1
0
mirror of https://github.com/pi-hole/pi-hole synced 2024-12-22 23:08:07 +00:00

Solves RegEx issue and updates documentation.

Signed-off-by: xch12i5 <40517505+xCh12i5@users.noreply.github.com>
This commit is contained in:
xch12i5 2019-01-20 16:04:07 +01:00
parent e02da90faa
commit cd8a423b32

View File

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