added testscript

This commit is contained in:
Nico Schottelius 2006-10-20 11:22:32 +02:00
parent 1722576c3e
commit 5f6a314749
1 changed files with 16 additions and 0 deletions

16
test/return-value.sh Executable file
View File

@ -0,0 +1,16 @@
#!/bin/sh
ls /surely-not-existent$$ 2>/dev/null
if [ "$?" -ne 0 ]; then
echo "$?"
fi
ls /surely-not-existent$$ 2>/dev/null
ret=$?
if [ "$ret" -ne 0 ]; then
echo "$ret"
fi