Files
bash/tests/read6.sub
T

11 lines
142 B
Plaintext

# test read with a timeout of 0 -- input polling
echo abcde | { sleep 0.25 ; read -t 0; }
echo $?
read -t 0 < $0
echo $?
read -t 0
echo $?