mirror of
https://https.git.savannah.gnu.org/git/bash.git
synced 2026-06-26 15:23:09 +02:00
12 lines
125 B
Plaintext
12 lines
125 B
Plaintext
# test read with a timeout of 0 -- input polling
|
|
|
|
echo abcde | read -t 0
|
|
echo $?
|
|
|
|
read -t 0 < $0
|
|
echo $?
|
|
|
|
read -t 0
|
|
echo $?
|
|
|