On Tue, May 7, 2013 at 9:55 PM, Fratkin, Allyn <[email protected]> wrote:
> Fantastic! Works great now. Thank you for the quick turnaround. Now I get
> a job distribution of 2, 1, 2, 1, 2, 2, 1. Perfect.
If it does not break anything this may be the default in the future.
> Only problem is now I get an error message "tcgetattr: Invalid argument" from
> each job, appears to result from "$remote_pre .= ::shell_quote_scalar('stty
> isig -onlcr -echo;');" on line 3810. Did you mean "and" rather than "or" on
> line 3798?
No: --ctrlc is now default unless you use --pipe.
I have not seen the error you get before, so I would like to be able
to reproduce that error. My guess is that it is due to your version of
stty or terminal. Can you post the output from the commands on the
remote system:
stty --version
stty -onlcr
stty isig
stty -echo
echo $TERM
uname -a
If you can reproduce it on one of the virtualbox-images from
http://sourceforge.net/projects/virtualboximage/files/ it will be even
better.
For --ctrlc to work I need:
-onlcr - make output 8-bit clean - otherwise binary output will not work.
isig - pass CTRL-C as signal
-echo - do not print input back
/Ole