-
-
Save xbeta/8c10c0a30ddf15c8f5858e5fbc41fb24 to your computer and use it in GitHub Desktop.
Revisions
-
johntyree revised this gist
Jan 28, 2014 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -1,7 +1,7 @@ #!/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 \ -
johntyree revised this gist
Aug 12, 2012 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -1,4 +1,4 @@ #!/usr/bin/env sh # Download lists, unpack and filter, write to stdout curl -s http://www.iblocklist.com/lists.php \ -
johntyree revised this gist
Aug 12, 2012 . 1 changed file with 1 addition and 0 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -1,5 +1,6 @@ #!/bin/sh # Download lists, unpack and filter, write to stdout curl -s http://www.iblocklist.com/lists.php \ | sed -n "s/.*value='\(http:.*=bt_.*\)'.*/\1/p" \ | xargs wget -O - \ -
johntyree revised this gist
Aug 12, 2012 . 1 changed file with 1 addition and 4 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -4,7 +4,4 @@ curl -s http://www.iblocklist.com/lists.php \ | sed -n "s/.*value='\(http:.*=bt_.*\)'.*/\1/p" \ | xargs wget -O - \ | gunzip \ | egrep -v '^#' -
johntyree created this gist
Aug 12, 2012 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,10 @@ #!/bin/sh curl -s http://www.iblocklist.com/lists.php \ | sed -n "s/.*value='\(http:.*=bt_.*\)'.*/\1/p" \ | xargs wget -O - \ | gunzip \ | egrep -v '^#' \ >> biglist.p2p # for i in *gz; do j=${i##*list=}; j=${j%%\&*}; mv "$i" "$j".gz; done # zcat *.gz | egrep -v '^#' > biglist.p2p