hello, i have set my own app as the shell of a user on a remote host. My app reads from stdin, and prints output to stdout.
If I do: ssh [email protected] and manually type multiple lines of text,the app works as expected (i.e. it processess each line, and outputs the result) However, if I do this: ssh -T [email protected] < file.txt my tool only processes the first line, and then quits. any clues? thx, - m

