back toc next

Conditions

simple condition

if test-commands
then
    consequent-commands
fi

Example: (do not try it out!)
if rm /etc/passwd; then
    echo "Yippie, I am Superuser !!11!!1"
fi