mirror of
https://github.com/Erreur32/cheat.git
synced 2025-01-09 22:32:02 +01:00
ce611eaceb
http://mywiki.wooledge.org/ParsingLs It's about the only thing I really know about bash.
14 lines
252 B
Text
14 lines
252 B
Text
# To implement a for loop:
|
|
for file in *;
|
|
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 "something beginning with 3 found";;
|
|
esac
|