]> git.ipfire.org Git - thirdparty/bash.git/blob - tests/read6.sub
34a369235b7333ccc9aa24afe8ebfabf018aa09e
[thirdparty/bash.git] / tests / read6.sub
1 # test read with a timeout of 0 -- input polling
2
3 echo abcde | { sleep 0.25 ; read -t 0; }
4 echo $?
5
6 read -t 0 < $0
7 echo $?
8
9 read -t 0
10 echo $?