Escape slashes if using '-t'

This commit is contained in:
g0tmi1k 2016-10-26 12:06:57 +01:00
parent f1ca42d762
commit bd3cac3bb6

View file

@ -406,6 +406,9 @@ else
SEARCH="${SEARCH}/ && ${CASE_TAG_FGREP}(\$1) ~ /"
fi
## Escape any slashes
tag="$( echo ${tag} | sed 's_/_\\/_g' )"
## Case sensitive?
if [[ "${SCASE}" -eq 1 ]]; then
SEARCH="${SEARCH}${tag}"