Add new addresses to existing list. Remove whitespace.
This commit is contained in:
parent
c53ce687e5
commit
83a52fadf0
4
update
4
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
|
||||
|
Loading…
x
Reference in New Issue
Block a user