Created
February 27, 2015 20:48
-
-
Save viliampucik/3301d20c9dfdfe3c9313 to your computer and use it in GitHub Desktop.
iblocklist
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/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 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks You!!!