the ioctl function.
Ithink this is something to do with a script running when not associated with a terminal.
I know in csh you can stop this by
stty: tcgetattr: A specified file does not support the ioctl system call.
Not a terminal
adding a directive to your .cshrc that will not execute tty-dependent commands when you are in the batch environment.
if(! $?BATCH ) then
set notify
set ignoreeof
set filec
endif
What about for ksh ?
Ithink this is something to do with a script running when not associated with a terminal.
I know in csh you can stop this by
stty: tcgetattr: A specified file does not support the ioctl system call.
Not a terminal
adding a directive to your .cshrc that will not execute tty-dependent commands when you are in the batch environment.
if(! $?BATCH ) then
set notify
set ignoreeof
set filec
endif
What about for ksh ?