mirror of
https://github.com/pi-hole/pi-hole
synced 2024-11-17 21:59:55 +00:00
:codacy: :codacy2: :codacy3:
Signed-off-by: Adam Warner <adamw@rner.email>
This commit is contained in:
parent
cc3035267f
commit
c24e5cd3f6
@ -281,8 +281,8 @@ gravity_ParseFileIntoDomains() {
|
|||||||
#Awk -F splits on given IFS, we grab the right hand side (chops trailing #coments and /'s to grab the domain only.
|
#Awk -F splits on given IFS, we grab the right hand side (chops trailing #coments and /'s to grab the domain only.
|
||||||
#Last awk command takes non-commented lines and if they have 2 fields, take the left field (the domain) and leave
|
#Last awk command takes non-commented lines and if they have 2 fields, take the left field (the domain) and leave
|
||||||
#+ the right (IP address), otherwise grab the single field.
|
#+ the right (IP address), otherwise grab the single field.
|
||||||
cat ${source} | \
|
|
||||||
awk -F '#' '{print $1}' | \
|
< ${source} awk -F '#' '{print $1}' | \
|
||||||
awk -F '/' '{print $1}' | \
|
awk -F '/' '{print $1}' | \
|
||||||
awk '($1 !~ /^#/) { if (NF>1) {print $2} else {print $1}}' | \
|
awk '($1 !~ /^#/) { if (NF>1) {print $2} else {print $1}}' | \
|
||||||
sed -nr -e 's/\.{2,}/./g' -e '/\./p' > ${destination}
|
sed -nr -e 's/\.{2,}/./g' -e '/\./p' > ${destination}
|
||||||
|
Loading…
Reference in New Issue
Block a user