cheat/cheat/cheatsheets/bash

15 lines
257 B
Plaintext
Raw Normal View History

# To implement a for loop:
for file in `ls .`;
do
echo $file found;
done
# To implement a case command:
case "$1"
in
0) echo "zero found";;
1) echo "one found";;
2) echo "two found";;
2013-11-03 20:26:56 +01:00
3*) echo "something beginning with 3 found";;
esac