1
0
mirror of https://github.com/cheat/cheat.git synced 2024-12-24 05:29:44 +01:00
cheat/cheatsheets/bash

15 lines
235 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";;
3) echo "three found";;
esac