mirror of
https://github.com/cheat/cheat.git
synced 2024-11-14 08:01:09 +01:00
6042b8814a
Otherwise, the loop just prints the words 'file' and 'found' on separate lines.
14 lines
235 B
Text
14 lines
235 B
Text
# 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
|