Unifiy sed commands

Co-authored-by: RD WebDesign <github@rdwebdesign.com.br>
Signed-off-by: Christian König <ckoenig@posteo.de>
pull/5247/head
Christian König 1 year ago
parent 56eae4afbe
commit 61ff5b2c76
No known key found for this signature in database

@ -768,25 +768,21 @@ gravity_ParseFileIntoDomains() {
tr '[:upper:]' '[:lower:]' < "${src}" > "${destination}"
# 2) Remove carriage returns
sed -i 's/\r$//' "${destination}"
# 3a) Remove comments (text starting with "#", include possible spaces before the hash sign)
sed -i 's/\s*#.*//g' "${destination}"
# 3b) Remove lines starting with ! (ABP Comments)
sed -i 's/\s*!.*//g' "${destination}"
# 3c) Remove lines starting with [ (ABP Header)
sed -i 's/\s*\[.*//g' "${destination}"
# 4) Remove lines containing "/"
sed -i -r '/(\/).*$/d' "${destination}"
# 5) Remove leading tabs, spaces, etc. (Also removes leading IP addresses)
sed -i -r 's/^.*\s+//g' "${destination}"
# 6) Remove empty lines
sed -i '/^$/d' "${destination}"
# 3) Remove comments (text starting with "#", include possible spaces before the hash sign)
# 4) Remove lines starting with ! (ABP Comments)
# 5) Remove lines starting with [ (ABP Header)
# 6) Remove lines containing "/"
# 7) Remove leading tabs, spaces, etc. (Also removes leading IP addresses)
# 8) Remove empty lines
sed -i -r \
-e 's/\r$//' \
-e 's/\s*#.*//g' \
-e 's/\s*!.*//g' \
-e 's/\s*\[.*//g' \
-e '/(\/).*$/d' \
-e 's/^.*\s+//g' \
-e '/^$/d' "${destination}"
chmod 644 "${destination}"
}

Loading…
Cancel
Save