Commit 1fa026b9 authored by Oliver Dick's avatar Oliver Dick
Browse files

using ' ' instead of '[:space:]' for tr

parent 4eda39a3
...@@ -46,9 +46,9 @@ _hostingde_parse() { ...@@ -46,9 +46,9 @@ _hostingde_parse() {
notfind="${2}" notfind="${2}"
fi fi
if [ "${notfind}" ]; then if [ "${notfind}" ]; then
_egrep_o \""${find}\":.*" | grep -v "${notfind}" | cut -d ':' -f 2 | cut -d ',' -f 1 | tr -d '[:space:]' _egrep_o \""${find}\":.*" | grep -v "${notfind}" | cut -d ':' -f 2 | cut -d ',' -f 1 | tr -d ' '
else else
_egrep_o \""${find}\":.*" | cut -d ':' -f 2 | cut -d ',' -f 1 | tr -d '[:space:]' _egrep_o \""${find}\":.*" | cut -d ':' -f 2 | cut -d ',' -f 1 | tr -d ' '
fi fi
} }
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment