cheat-fork-echo/cheat/cheatsheets/bash
Brandon Pierce 41d2a810e6 add debugging examples for bash
add new command route
2014-08-13 10:49:56 -07:00

21 lines
311 B
Plaintext

# 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
# Turn on debugging:
set -x
# Turn off debugging:
set +x