android_mt6572_jiabo/external/bash/tests/read6.sub
2025-09-05 16:56:03 +08:00

10 lines
211 B
Text

# 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 $?