improve of cmpl.
[bush.git] / testing / 3.OriginalTest.dir / 6.cmd / read / read2.sub
blob41698e4686ba06791180616d2027d023cce3f71b
1 #   This program is free software: you can redistribute it and/or modify
2 #   it under the terms of the GNU General Public License as published by
3 #   the Free Software Foundation, either version 3 of the License, or
4 #   (at your option) any later version.
6 #   This program is distributed in the hope that it will be useful,
7 #   but WITHOUT ANY WARRANTY; without even the implied warranty of
8 #   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
9 #   GNU General Public License for more details.
11 #   You should have received a copy of the GNU General Public License
12 #   along with this program.  If not, see <http://www.gnu.org/licenses/>.
14 a=4
16 read -t 2 a < /dev/tty
17 estat=$?
18 if [ $estat -gt 128 ]; then
19         echo timeout 1: ok
20 else
21         echo $estat
24 echo $a
26 sleep 5 | read -t 1 a
27 estat=$?
28 if [ $estat -gt 128 ]; then
29         echo timeout 2: ok
30 else
31         echo $estat
34 echo $a
36 read -t -3 a < /dev/tty
37 echo $?
39 echo $a
41 # the above should all time out
42 echo abcde | {
43         read -t 2 a
44         echo $a