RosettaCodeData/Task/Boolean-values/UNIX-Shell/boolean-values-1.sh
Ingy döt Net d066446780 langs a-z
2013-04-10 22:43:41 -07:00

8 lines
273 B
Bash

if
echo 'Looking for file' # This is the evaluation block
test -e foobar.fil # The exit code from this statement determines whether the branch runs
then
echo 'The file exists' # This is the optional branch
echo 'I am going to delete it'
rm foobar.fil
fi