|
Size: 317
Comment:
|
Size: 394
Comment:
|
| Deletions are marked like this. | Additions are marked like this. |
| Line 10: | Line 10: |
{{{ if [ TEST ]; then : elif [ TEST ]; then : else : fi }}} |
Shell Logic
Conditional Logic
if [ TEST ]; then : elif [ TEST ]; then : else : fi
Case Switching Logic
case $INPUT_STRING in
y)
echo "Proceeding..."
;;
n)
echo "Quitting..."
;;
*)
echo "Please enter y or n"
;;
esac