From 71d9b7be0128f34e41fb9ac03911d08924d250f7 Mon Sep 17 00:00:00 2001 From: Semen Zhydenko Date: Sun, 4 Feb 2018 17:19:44 +0100 Subject: [PATCH] occurences -> occurrences --- languages/bash.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/languages/bash.sh b/languages/bash.sh index 0afb1fc..f53ed8c 100644 --- a/languages/bash.sh +++ b/languages/bash.sh @@ -175,8 +175,8 @@ ${variable//pattern/string} # the longest match to pattern in variable is repla ${#varname} # returns the length of the value of the variable as a character string -*(patternlist) # matches zero or more occurences of the given patterns -+(patternlist) # matches one or more occurences of the given patterns +*(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 exactly one of the given patterns !(patternlist) # matches anything except one of the given patterns