From 3b0535833b82dc12acea7bf2e3c1cc3545e304b4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Thalheim?= Date: Sun, 3 Nov 2013 20:26:56 +0100 Subject: [PATCH] bash: extend switch case example --- cheatsheets/bash | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cheatsheets/bash b/cheatsheets/bash index 384401d..3b601d3 100644 --- a/cheatsheets/bash +++ b/cheatsheets/bash @@ -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