From 83a52fadf01d1ff6d5ef15b9f2e42037a7b0a0b1 Mon Sep 17 00:00:00 2001 From: Will White Date: Fri, 6 Feb 2015 23:07:46 -0800 Subject: [PATCH] Add new addresses to existing list. Remove whitespace. --- update | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/update b/update index 8c7e827..9f3c7c5 100755 --- a/update +++ b/update @@ -8,9 +8,11 @@ for source in $sources; do curl --silent $source >> tmp done; -sort tmp \ +cat data/free.txt tmp \ + | sort \ | uniq \ | sed '/./,$!d' \ + | sed -e 's/^ *//' -e 's/ *$//' \ | awk '{print tolower($0)}' \ | comm -23 - ./data/blacklist.txt \ | comm -23 - ./data/disposable.txt > ./data/free.txt