|
2 |
edited tags
|
||
|
1 |
|
||
ksh: how to probe stdin?I want my ksh script to have different behaviors depending on whether there is something incoming through stdin or not:
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?!
|
||||
