Bash-4.3 distribution sources and documentation

This commit is contained in:
Chet Ramey 2014-02-26 09:36:43 -05:00
commit ac50fbac37
497 changed files with 129395 additions and 87598 deletions

27
tests/errors1.sub Normal file
View file

@ -0,0 +1,27 @@
. -i /dev/tty
f()
{
return -1
}
set -- a b c
shift -4
f
for f in 1 2 3; do
break -1
done
f()
{
return -25
}
f
echo after f
exit -25
exit -56