Solves RegEx issue and updates documentation.

Signed-off-by: xch12i5 <40517505+xCh12i5@users.noreply.github.com>
pull/2597/head
xch12i5 5 years ago
parent e02da90faa
commit cd8a423b32

@ -340,11 +340,11 @@ gravity_ParseFileIntoDomains() {
# 3) Remove lines containing "#" or "/"
# 4) Remove leading tabs, spaces, etc.
# 5) Delete lines not matching domain names
< ${source} tr -d "\r" | \
tr "[:upper:]" "[:lower:]" | \
sed -r "/(\/|#).*$/d" | \
sed -r "s/^.*\s+//g" | \
sed -r "/([^\.]+\.)+[^\.]{2,}/!d" > ${destination}
< ${source} tr -d '\r' | \
tr '[:upper:]' '[:lower:]' | \
sed -r '/(\/|#).*$/d' | \
sed -r 's/^.*\s+//g' | \
sed -r '/([^\.]+\.)+[^\.]{2,}/!d' > ${destination}
return 0
fi

Loading…
Cancel
Save