mirror of
https://github.com/Erreur32/cheat.git
synced 2024-11-02 22:11:05 +01:00
15 lines
243 B
Plaintext
15 lines
243 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
|