mirror of
https://github.com/pi-hole/pi-hole
synced 2024-12-22 14:58:08 +00:00
Stickler-lints
Signed-off-by: Dan Schaper <dan.schaper@pi-hole.net>
This commit is contained in:
parent
cd8a423b32
commit
54ae9d83b0
@ -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
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user