Skip to content

Instantly share code, notes, and snippets.

@gowon
Forked from johntyree/getBlockLists.sh
Created August 12, 2018 15:42
Show Gist options
  • Save gowon/9255c042147d0d2ae36e5bd4f66f45ab to your computer and use it in GitHub Desktop.
Save gowon/9255c042147d0d2ae36e5bd4f66f45ab to your computer and use it in GitHub Desktop.
Make one large blocklist from the bluetack lists on iblocklist.com
#!/usr/bin/env sh
# Download lists, unpack and filter, write to stdout
curl -s https://www.iblocklist.com/lists.php \
| sed -n "s/.*value='\(http:.*=bt_.*\)'.*/\1/p" \
| xargs wget -O - \
| gunzip \
| egrep -v '^#'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment