blob: abfe89db23bda1f0402afccd0dd71acf17d78596 [file] [log] [blame]
Jari Aalto31859422009-01-12 13:36:28 +00001# test read with a timeout of 0 -- input polling
Jari Aalto17345e52009-02-19 22:21:29 +00002# sleep with fractional seconds argument is not universal
3echo abcde | { sleep 0.25 2>/dev/null ; read -t 0; }
Jari Aalto31859422009-01-12 13:36:28 +00004echo $?
5
6read -t 0 < $0
7echo $?
8
9read -t 0
10echo $?