Files
bash/tests/read6.sub
T
2011-12-07 09:28:26 -05:00

12 lines
125 B
Plaintext

# test read with a timeout of 0 -- input polling
echo abcde | read -t 0
echo $?
read -t 0 < $0
echo $?
read -t 0
echo $?