World4You grep -q

This commit is contained in:
Lorenz Stechauner 2020-11-27 22:27:10 +01:00
parent 895da5cbf0
commit 4661185719
1 changed files with 1 additions and 1 deletions

View File

@ -171,7 +171,7 @@ _get_paketnr() {
domains=$(echo "$form" | _ggrep -E '^\s*([A-Za-z0-9_-]+\.)+[A-Za-z0-9_-]*$' | sed 's/^\s*\(\S*\)$/\1/')
domain=''
for domain in $domains; do
if [ "$(echo "$domain" | grep -q "$tld\$")" ]; then
if $(echo "$domain" | grep -q "$tld\$"; then
break
fi
done