i-bash/tests/read2.sub

23 lines
199 B
Text
Raw Normal View History

2000-03-17 21:46:59 +00:00
a=4
2004-07-27 13:29:18 +00:00
read -t 2 a < /dev/tty
2000-03-17 21:46:59 +00:00
echo $?
echo $a
sleep 5 | read -t 1 a
echo $?
echo $a
2004-07-27 13:29:18 +00:00
read -t -3 a < /dev/tty
2000-03-17 21:46:59 +00:00
echo $?
echo $a
# the above should all time out
echo abcde | {
read -t 2 a
echo $a
}