I-Blocklist Downloader

#!/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
view raw iblocklist hosted with ❤ by GitHub

No comments:

Post a Comment