]> git.ipfire.org Git - thirdparty/bash.git/blame - tests/read6.sub
Imported from ../bash-4.0-rc1.tar.gz.
[thirdparty/bash.git] / tests / read6.sub
CommitLineData
3185942a
JA
1# test read with a timeout of 0 -- input polling
2
3echo abcde | { sleep 0.25 ; read -t 0; }
4echo $?
5
6read -t 0 < $0
7echo $?
8
9read -t 0
10echo $?