Displaying 1 result from an estimated 1 matches for "vlefevre".
Did you mean:
lefevre
2007 Jun 13
0
[Bug 1265] SCP progress doesn't map to standard out or standard error
...--- Comment #4 from Vincent Lefevre <vincent at vinc17.org> 2007-06-13 22:24:43 ---
I think that the progress meter should be output to the terminal, not
to stdout or stderr, which may be redirected. For instance:
$ ./scp -S $PWD/ssh scp.c localhost:
Enter passphrase for key '/home/vlefevre/.ssh/id_rsa':
Connected to vin (from 127.0.0.1)
scp.c 100% 28KB 27.6KB/s 00:00
$
That's OK. But:
$ ./scp -S $PWD/ssh scp.c localhost: < /dev/null >& /dev/null
Enter passphrase for key '/home/vlefevre/.ssh/id_rsa':
$
I don't get the pro...