]> git.ipfire.org Git - thirdparty/bash.git/blob - tests/read6.sub
Bash-4.3 patch 7
[thirdparty/bash.git] / tests / read6.sub
1 # test read with a timeout of 0 -- input polling
2 # sleep with fractional seconds argument is not universal
3 echo abcde | { sleep 0.25 2>/dev/null ; read -t 0; }
4 echo $?
5
6 read -t 0 < $0
7 echo $?
8
9 read -t 0
10 echo $?