Merge pull request #127 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
1 changed files with 1 additions and 1 deletions

View File

@ -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