show/hide this revision's text 7 added 1000 characters in body

EDIT: You are running on HP-UX

Tested [ -t 0 ] on HP-UX and it appears to be working for me. I have used the following setup:

/tmp/x.ksh:

#!/bin/ksh
/tmp/y.ksh

/tmp/y.ksh:

#!/bin/ksh
test -t 0 && echo "terminal!"

Running /tmp/x.ksh prints: terminal!

Could you confirm the above on your platform, and/or provide an alternate test setup more closely reflecting your situation? Is your script ultimately spawned by cron?


EDIT 2

If desperate, and if Perl is available, define:

stdin_ready() {
  TIMEOUT=$1; shift
  perl -e '
    my $rin = "";
    vec($rin,fileno(STDIN),1) = 1;
    select($rout=$rin, undef, undef, '$TIMEOUT') < 1 && exit 1;
  '
}

stdin_ready 1 || 'stdin not ready in 1 second, assuming terminal'


EDIT 3

Please note that the timeout may need to be significant if your input comes from sort, ssh etc. (all these programs can spawn and establish the pipe with your script seconds or minutes before producing any data over it.) Also, using a hefty timeout may dramatically penalize your script when there is nothing on the input to begin with (e.g. terminal.)

If potentially large timeouts are a problem, and if you can influence the way in which your script is called, then you may want to force the callers to explicitly instruct your program whether stdin should be used, via a custom option or in the standard GNU or tar manner (e.g. script [options [--]] FILE ..., where FILE can be a file name, a - to denote standard input, or a combination thereof, and your script would only read from standard input if - were passed in as a parameter.)

Cheers, V.

show/hide this revision's text 6 added 378 characters in body

EDIT: You are running on HP-UX

Tested [ -t 0 ] on HP-UX and it appears to be working for me. I have used the following setup:

/tmp/x.ksh:

#!/bin/ksh
/tmp/y.ksh

/tmp/y.ksh:

#!/bin/ksh
test -t 0 && echo "terminal!"

Running /tmp/x.ksh prints: terminal!

Could you confirm the above on your platform, and/or provide an alternate test setup more closely reflecting your situation? Is your script ultimately spawned by cron?


EDIT 2

If desperate, and if Perl is available, define:

stdin_ready() {
  TIMEOUT=$1; shift
  perl -e '
    my $rin = "";
    vec($rin,fileno(STDIN),1) = 1;
    select($rout=$rin, undef, undef, '$TIMEOUT') < 1 && exit 1;
  '
}

stdin_ready 1 || 'stdin not ready in 1 second, assuming terminal'
show/hide this revision's text 5 deleted 1237 characters in body

The test

EDIT: You are running on HP-UX

Tested [ -t 0 ] will work on most platforms when when the script performing the test is invoked from another script, or even from nohup.

On select platforms (e.g. various flavors of Linux HP-UX and BSD) you will be able to test what the symbolic link /proc/$$/fd/0 points it appears to . It can be a tty (real or pseudo), a pipe, or a real file.

Alternatively, use ksh's built-in read -t 1 LINE to return with EOF-like conditions after at most one second even if stdin is a terminalworking for me. You will I have to re-output LINE if you were, in effect, attached to a pipe.

Sample /proc/$$/fd layout for used the pipe: cat /dev/zero | od -v | lessfollowing setup:

[root]# ls -l /proc/14318/fdlrwx------    1 root     root           64 Mar 11 15:21 0 -> /dev/pts/6l-wx------    1 root     root           64 Mar 11 15:21 1 -> pipe:[121287438]lrwx------    1 root     root           64 Mar 11 15:21 2 -> /dev/pts/6lr-x------    1 root     root           64 Mar 11 15:21 3 -> /dev/zero[root]# ls -l 

lr-x------ 1 root root 64 Mar 11 15:22 0 -> pipe:[121287438]l-wx------ 1 root root 64 Mar 11 15:22 1 -> pipe:[121287440]lrwx------ 1 root root 64 Mar 11 15:22 2 -> tmp/x.ksh:

#!/bin/ksh[root]# ls -l tmp/y.kshlr-x-----tmp/y.ksh:

#!/bin/kshtest -1 root     root           64 Mar 11 15:22 t 0 -> pipe:[121287440]lrwx------    1 root     root           64 Mar 11 15:22 1 -> /dev/pts/6lrwx------    1 root     root           64 Mar 11 15:22 2 -> /dev/pts/6lr-x------    1 root     root           64 Mar 11 15:22 3 -> && echo "terminal!"

Running /dev/ttytmp/x.ksh prints: terminal!

Could you confirm the above on your platform, and/or provide an alternate test setup more closely reflecting your situation? Is your script ultimately spawned by cron?

show/hide this revision's text 4 added 173 characters in body
show/hide this revision's text 3 added 288 characters in body
show/hide this revision's text 2 added 75 characters in body
show/hide this revision's text 1