Skip to content

Commit 0932c78

Browse files
author
Aaron DeVera
committed
make_list
1 parent ba51a37 commit 0932c78

File tree

2 files changed

+13
-0
lines changed

2 files changed

+13
-0
lines changed

files/bt_blocklist.gz

6.79 MB
Binary file not shown.

files/make_list.sh

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
#!/usr/bin/env sh
2+
3+
# Download lists, unpack and filter, write to gzipped file
4+
curl -s https://www.iblocklist.com/lists.php \
5+
| grep -A 2 Bluetack \
6+
| sed -n "s/.*value='\(http:.*\)'.*/\1/p" \
7+
| xargs wget -O - \
8+
| gunzip \
9+
| egrep -v '^#' \
10+
| gzip - > bt_blocklist.gz
11+
12+
# MOVE TO OSX TRANSMISSION BLOCKLIST FOLDER
13+
mv bt_blocklist.gz ~/Library/Application\ Support/Transmission/blocklists/

0 commit comments

Comments
 (0)