cheat-fork-echo/cheatsheets/bash
2013-08-22 11:34:11 +10:00

15 lines
247 B
Plaintext

# To implement a for loop:
for file in `ls .`;
do echo 'file';
echo 'found';
done
# To implement a case command:
case "$1"
in
0) echo "zero found";;
1) echo "one found";;
2) echo "two found";;
3) echo "three found";;
esac