in reply to TERM problems
If you run this program from the command line, it'll print tty. If you run it via a remote shell on another host, you'll see no tty.if(-t STDOUT) { print "tty\n"; } else { print "no tty\n"; }
I suspect your program is checking this and prints an error if it finds out about it.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: TERM problems
by hotshot (Prior) on Sep 06, 2004 at 07:30 UTC | |
by tachyon (Chancellor) on Sep 06, 2004 at 08:28 UTC |