1
0
mirror of https://github.com/cheat/cheat.git synced 2025-05-22 08:06:06 +02:00

Merge pull request from Mic92/master

bash: extend switch case example
This commit is contained in:
Chris Lane 2013-11-11 14:28:30 -08:00
commit 3b604d0baa

@ -10,5 +10,5 @@ in
0) echo "zero found";;
1) echo "one found";;
2) echo "two found";;
3) echo "three found";;
3*) echo "something beginning with 3 found";;
esac