mirror of
https://https.git.savannah.gnu.org/git/bash.git
synced 2026-06-21 12:57:58 +02:00
11 lines
211 B
Plaintext
11 lines
211 B
Plaintext
# test read with a timeout of 0 -- input polling
|
|
# sleep with fractional seconds argument is not universal
|
|
echo abcde | { sleep 0.25 2>/dev/null ; read -t 0; }
|
|
echo $?
|
|
|
|
read -t 0 < $0
|
|
echo $?
|
|
|
|
read -t 0
|
|
echo $?
|