World4You removed _ggrep

This commit is contained in:
Lorenz Stechauner 2020-11-29 10:43:25 +01:00
parent faf6c16717
commit c3d7f2f170
1 changed files with 1 additions and 11 deletions

View File

@ -183,16 +183,6 @@ _get_paketnr() {
TLD="$domain"
RECORD=$(echo "$fqdn" | cut -c"1-$((${#fqdn} - ${#TLD} - 1))")
PAKETNR=$(echo "$form" | _ggrep -B 3 "^\\s*$domain\$" | head -n 1 | sed 's/^.*>\([0-9][0-9]*\).*$/\1/')
PAKETNR=$(echo "$form" | _egrep_o "data-textfilter=\" $domain .* [0-9]*" | head -n 1 | _egrep_o "[0-9]*")
return 0
}
_ggrep() {
if _exists "ggrep"; then
ggrep "$@"
return $?
else
grep "$@"
return $?
fi
}