summaryrefslogtreecommitdiffstats
path: root/pg_list_updater.sh
diff options
context:
space:
mode:
authorFlorian Pritz <bluewind@xinu.at>2013-05-11 13:27:07 +0200
committerFlorian Pritz <bluewind@xinu.at>2013-05-11 13:27:07 +0200
commit60cb01f9a81c311f914aed4a23e8e5b35e965918 (patch)
tree8b9109a8f1bcf37506755e0e77b83b0a026cda57 /pg_list_updater.sh
parenta9ba01279e6f3c64b082f4de6e7d95cd1b5f7dab (diff)
downloadbin-60cb01f9a81c311f914aed4a23e8e5b35e965918.tar.gz
bin-60cb01f9a81c311f914aed4a23e8e5b35e965918.tar.xz
soem more cleanup
Signed-off-by: Florian Pritz <bluewind@xinu.at>
Diffstat (limited to 'pg_list_updater.sh')
-rwxr-xr-xpg_list_updater.sh28
1 files changed, 0 insertions, 28 deletions
diff --git a/pg_list_updater.sh b/pg_list_updater.sh
deleted file mode 100755
index 2ba4a6f..0000000
--- a/pg_list_updater.sh
+++ /dev/null
@@ -1,28 +0,0 @@
-#!/bin/sh
-#----------------------------------------------------
-# Version: 0.1.0
-# Author: Florian "Bluewind" Pritz <flo@xssn.at>
-#
-# Licensed under WTFPL v2
-# (see COPYING for full license text)
-#
-#----------------------------------------------------
-# download current blocklist and extract
-#----------------------------------------------------
-
-failed() {
- notify-send -t 10000 -u critical "Updater" "PG list NOT updated!"
-}
-finished(){
- notify-send -t 10000 "Updater" "PG list update sucessfully"
-}
-
-cd $HOME/stuff/
-wget http://peerguardian.sourceforge.net/lists/p2p.php -O level1.7z &&
-7z x level1.7z &&
-cat level1 | grep -vi moviex.info > p2p.pg &&
-finished ||
-failed
-
-rm "level1.7z"
-rm "level1"