Display correct return code

This commit is contained in:
Nico Schottelius 2006-10-20 11:27:09 +02:00
commit 141f9bd535
2 changed files with 11 additions and 2 deletions

View file

@ -14,3 +14,10 @@ if [ "$ret" -ne 0 ]; then
echo "$ret"
fi
# if is true, ls is fales
if [ "foo" = "foo" ]; then
ls /surely-not-existent$$ 2>/dev/null
fi
# but that's still the return of ls and not of fi
echo $?