Simplified EscapeRegexp()

This commit is contained in:
DL6ER 2016-12-02 14:17:34 +01:00
parent 2061daa902
commit 509cfd15f2
1 changed files with 1 additions and 1 deletions

View File

@ -53,7 +53,7 @@ EOM
EscapeRegexp() { EscapeRegexp() {
# This way we may safely insert an arbitrary # This way we may safely insert an arbitrary
# string in our regular expressions # string in our regular expressions
echo $* | sed "s/[]\\.|$(){}?+*^]/\\\\&/g" | sed "s/\\//\\\\\//g" echo $* | sed "s/[]\\.|$(){}?+*^]\\//\\\\&/g"
} }
HandleOther(){ HandleOther(){