]> git.ipfire.org Git - thirdparty/bash.git/blame - tests/errors1.sub
Bash-4.3 patch 7
[thirdparty/bash.git] / tests / errors1.sub
CommitLineData
ac50fbac
CR
1. -i /dev/tty
2
3f()
4{
5 return -1
6}
7
8set -- a b c
9shift -4
10
11f
12
13for f in 1 2 3; do
14 break -1
15done
16
17
18f()
19{
20 return -25
21}
22
23f
24echo after f
25exit -25
26
27exit -56