bash: extend switch case example

This commit is contained in:
Jörg Thalheim 2013-11-03 20:26:56 +01:00
parent 4b7a1110f3
commit 3b0535833b
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