Re: CTRL-C does not kill remote jobs

2013-04-08 Thread Ole Tange
This is a hard nut to crack. The below should result in 'echo foo | wc' on the server localhost. $ echo foo | uuencode input | ssh -tt -oLogLevel=quiet localhost "stty isig -echoctl -echo ; uudecode -o - | wc | uuencode output" | uudecode -o - But instead it prints 'foo'. It is easier to see wh

Re: CTRL-C does not kill remote jobs

2013-04-08 Thread Ben Booth
On Apr 7, 2013, at 2:36 PM, Ole Tange wrote: > > I am surprised it is so slow (encode 200 MB/s, decode 100 MB/s), and > that there are no C/C++ packages that are faster. How fast does it go without the encoding/decoding stuff? Just curious. Ben

Re: CTRL-C does not kill remote jobs

2013-04-08 Thread Ole Tange
On Mon, Apr 8, 2013 at 5:23 PM, Ole Tange wrote: > This is a hard nut to crack. So. Something is working now. $ parallel --ctrlc -S server gzip -f ::: the/big/remote/file ^C Good news: * Ctrl-C kills the remote job. * Data can be transferred _from_ the remote system. * Arguments can be 8-bit