mirror of
https://github.com/cheat/cheat.git
synced 2024-11-16 00:48:29 +01:00
8dda6a9241
Created cheatsheets package to store the default sheets.
14 lines
243 B
Text
14 lines
243 B
Text
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
|