From 22e0b5b3998bd6daf04fe503cf34308f4abb2f04 Mon Sep 17 00:00:00 2001 From: Semen Zhydenko Date: Sun, 4 Feb 2018 17:20:06 +0100 Subject: [PATCH] occurence -> occurrence --- languages/bash.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/languages/bash.sh b/languages/bash.sh index f53ed8c..534d162 100644 --- a/languages/bash.sh +++ b/languages/bash.sh @@ -177,7 +177,7 @@ ${#varname} # returns the length of the value of the variable a *(patternlist) # matches zero or more occurrences of the given patterns +(patternlist) # matches one or more occurrences of the given patterns -?(patternlist) # matches zero or one occurence of the given patterns +?(patternlist) # matches zero or one occurrence of the given patterns @(patternlist) # matches exactly one of the given patterns !(patternlist) # matches anything except one of the given patterns