vote up 2 vote down star
1

I want my ksh script to have different behaviors depending on whether there is something incoming through stdin or not:

    (1) cat file.txt | ./script.ksh  (then do "cat <&0 >./tmp.dat" and process tmp.dat)
vs. (2) ./script.ksh (then process $1 which must be a readable regular file)

Checking for stdin to see if it is a terminal[ -t 0 ] is not helpful, because my script is called from an other script.

Doing "cat <&0 >./tmp.dat" to check tmp.dat's size hangs up waiting for an EOF from stdin if stdin is "empty" (2nd case).

How to just check if stdin is "empty" or not?!

flag
what about checking length of arguments? ($#) if there is a $1, then you conclude a reading from that. if not, read from stdin i would say. – Johannes Schaub - litb Mar 11 at 16:51
If I only could! usage: ./script.ksh <-d dest> [-f from_sys] [file, file1, ..]. If stdin => [file, file1, ..] not to be processed, just moved. If no stdin => process file, move file1,.. If no stdin, nor [file, file1, ..] => error: user must provide some to process ! – ExpertNoob1 Mar 11 at 16:58
ExpertNoob, you may want to mark this question as answered. :) – Vlad Romascanu Mar 21 at 6:28

3 Answers

vote up 1 vote down

This strategy works for bash, and would likely work for ksh. Poll 'tty':

#!/bin/bash
set -a

if [ "$( tty )" == 'not a tty' ]
then
    STDIN_DATA_PRESENT=1
else
    STDIN_DATA_PRESENT=0
fi

if [ ${STDIN_DATA_PRESENT} -eq 1 ]
then
    echo "Input was found."
else
    echo "Input was not found."
fi
link|flag
Also works with ksh. – Boune Aug 11 at 19:41
vote up 0 vote down

Why not solve this in a more traditional way, and use the command line argument to indicate that the data will be coming from stdin?

For an example, consider the difference between:

echo foo | cat -

and

echo foo > /tmp/test.txt

cat /tmp/test.txt

link|flag
vote up 2 vote down

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.

link|flag
I'm on HP-UX :-( Is there a mean of displaying existing pipes under HP-UX? – ExpertNoob1 Mar 11 at 19:26
Hmmm, yet 'test -t 0' correctly identifies the fd as a terminal on my hpux, even when the test is performed from within a script called by another script (HP-UX HP-A500 B.11.11 U 9000/800 538790518 unlimited-user license) – Vlad Romascanu Mar 11 at 19:39
Well, test -t 0 works in my tests too, but my script is called by tens of other, some must be doing black magic with file descriptors.. My script is to replace an existing one on many servers worldwide, so it must be bullet proof. Your perl solution is great, I'm testing it now. Thanks ! – ExpertNoob1 Mar 12 at 9:28
Yes; hoever, if perl is not present, the above will be equivalent to stdin not being ready; in the long run it may still be better to adopt a cat-like strategy, i.e. (1) if 0 file arguments are provided assume automatically stdin (even if terminal); (2) if >0 file arguments provided, ignore stdin – Vlad Romascanu Mar 12 at 18:03
Up to you to pick the solution that best fits your requirements. :) I would personally prefer the cat-like approach as more predictable and more robust. – Vlad Romascanu Mar 12 at 18:05
show 4 more comments

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.