mirror of
https://github.com/pi-hole/pi-hole.git
synced 2024-11-22 14:13:42 +00:00
Remove lines containing ABP JavaScript rules from adlists
Signed-off-by: Christian König <github@yubiuser.dev>
This commit is contained in:
parent
1789b1ce99
commit
cffb3117d4
1 changed files with 5 additions and 3 deletions
|
@ -699,15 +699,17 @@ gravity_ParseFileIntoDomains() {
|
||||||
# 3) Remove lines starting with ! (ABP Comments)
|
# 3) Remove lines starting with ! (ABP Comments)
|
||||||
# 4) Remove lines starting with [ (ABP Header)
|
# 4) Remove lines starting with [ (ABP Header)
|
||||||
# 5) Remove lines containing ABP extended CSS selectors ("##", "#!#", "#@#", "#?#") preceded by a letter
|
# 5) Remove lines containing ABP extended CSS selectors ("##", "#!#", "#@#", "#?#") preceded by a letter
|
||||||
# 6) Remove comments (text starting with "#", include possible spaces before the hash sign)
|
# 6) Remove lines containing ABP JavaScript rules ("#%#") preceded by a letter
|
||||||
# 7) Remove leading tabs, spaces, etc. (Also removes leading IP addresses)
|
# 7) Remove comments (text starting with "#", include possible spaces before the hash sign)
|
||||||
# 8) Remove empty lines
|
# 8) Remove leading tabs, spaces, etc. (Also removes leading IP addresses)
|
||||||
|
# 9) Remove empty lines
|
||||||
|
|
||||||
sed -i -r \
|
sed -i -r \
|
||||||
-e 's/\r$//' \
|
-e 's/\r$//' \
|
||||||
-e 's/\s*!.*//g' \
|
-e 's/\s*!.*//g' \
|
||||||
-e 's/\s*\[.*//g' \
|
-e 's/\s*\[.*//g' \
|
||||||
-e '/[a-z]\#[$?@]{0,1}\#/d' \
|
-e '/[a-z]\#[$?@]{0,1}\#/d' \
|
||||||
|
-e '/[a-z]\#%\#/d' \
|
||||||
-e 's/\s*#.*//g' \
|
-e 's/\s*#.*//g' \
|
||||||
-e 's/^.*\s+//g' \
|
-e 's/^.*\s+//g' \
|
||||||
-e '/^$/d' "${destination}"
|
-e '/^$/d' "${destination}"
|
||||||
|
|
Loading…
Reference in a new issue