Skip to content

Instantly share code, notes, and snippets.

@viliampucik
Created February 27, 2015 20:48
Show Gist options
  • Select an option

  • Save viliampucik/3301d20c9dfdfe3c9313 to your computer and use it in GitHub Desktop.

Select an option

Save viliampucik/3301d20c9dfdfe3c9313 to your computer and use it in GitHub Desktop.
iblocklist
#!/usr/bin/env sh
# Download all I-Blocklist lists into a file
curl -s https://www.iblocklist.com/lists.php \
| sed -n "s/.*value='\(http:.*\)'.*/'\1'/p" \
| xargs curl -L \
| gunzip \
| egrep -v '^#' \
| sort -u > iblocklist.p2p
@bardimnik
Copy link
Copy Markdown

Thanks You!!!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment