ksh: how to probe stdin? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-06T14:04:37Z http://stackoverflow.com/feeds/question/635361 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/635361/ksh-how-to-probe-stdin 2 ksh: how to probe stdin? ExpertNoob1 2009-03-11T16:38:14Z 2009-04-03T15:42:35Z <p>I want my ksh script to have different behaviors depending on whether there is something incoming through stdin or not:</p> <pre><code> (1) cat file.txt | ./script.ksh (then do "cat &lt;&amp;0 &gt;./tmp.dat" and process tmp.dat) vs. (2) ./script.ksh (then process $1 which must be a readable regular file) </code></pre> <p>Checking for stdin to see if it is a terminal[ -t 0 ] is not helpful, because my script is called from an other script.</p> <p>Doing "cat &lt;&amp;0 >./tmp.dat" to check tmp.dat's size hangs up waiting for an EOF from stdin if stdin is "empty" (2nd case).</p> <p>How to just check if stdin is "empty" or not?!</p> http://stackoverflow.com/questions/635361/ksh-how-to-probe-stdin/635924#635924 2 Answer by Vlad Romascanu for ksh: how to probe stdin? Vlad Romascanu 2009-03-11T19:09:13Z 2009-03-13T17:04:32Z <p><strong>EDIT: You are running on HP-UX</strong></p> <p>Tested <code>[ -t 0 ]</code> on HP-UX and it appears to be working for me. I have used the following setup:</p> <p><code>/tmp/x.ksh:</code></p> <pre><code>#!/bin/ksh /tmp/y.ksh </code></pre> <p><code>/tmp/y.ksh:</code></p> <pre><code>#!/bin/ksh test -t 0 &amp;&amp; echo "terminal!" </code></pre> <p>Running <code>/tmp/x.ksh</code> prints: <code>terminal!</code></p> <p>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 <code>cron</code>?</p> <p><hr /></p> <p><strong>EDIT 2</strong></p> <p>If desperate, and if Perl is available, define:</p> <pre><code>stdin_ready() { TIMEOUT=$1; shift perl -e ' my $rin = ""; vec($rin,fileno(STDIN),1) = 1; select($rout=$rin, undef, undef, '$TIMEOUT') &lt; 1 &amp;&amp; exit 1; ' } stdin_ready 1 || 'stdin not ready in 1 second, assuming terminal' </code></pre> <p><hr /></p> <p><strong>EDIT 3</strong></p> <p>Please note that the timeout may need to be significant if your input comes from <code>sort</code>, <code>ssh</code> 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.)</p> <p>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 <code>GNU</code> or <code>tar</code> manner (e.g. script [options [--]] FILE ..., where FILE can be a file name, a <code>-</code> to denote standard input, or a combination thereof, and your script would only read from standard input if <code>-</code> were passed in as a parameter.)</p> <p>Cheers, V.</p> http://stackoverflow.com/questions/635361/ksh-how-to-probe-stdin/687206#687206 0 Answer by Mike for ksh: how to probe stdin? Mike 2009-03-26T19:27:10Z 2009-03-26T19:27:10Z <p>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?</p> <p>For an example, consider the difference between:</p> <blockquote> <p><code>echo foo | cat -</code></p> </blockquote> <p>and</p> <blockquote> <p><code>echo foo &gt; /tmp/test.txt</code></p> <p><code>cat /tmp/test.txt</code></p> </blockquote> http://stackoverflow.com/questions/635361/ksh-how-to-probe-stdin/714511#714511 1 Answer by Dejay Clayton for ksh: how to probe stdin? Dejay Clayton 2009-04-03T15:42:35Z 2009-04-03T15:42:35Z <p>This strategy works for bash, and would likely work for ksh. Poll 'tty':</p> <pre><code>#!/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 </code></pre>