Added number of trackers in output

newworkflow_parseropti
Geoffrey Frogeye 2019-11-11 13:00:14 +01:00
parent 4e69bdbfc3
commit 7a7a3642a5
1 changed files with 1 additions and 0 deletions

View File

@ -19,6 +19,7 @@ sort -u temp/all_toblock.list > dist/firstparty-trackers.txt
echo "# Generation version: eulaurarien $(git describe --tags)"
echo "# Number of source websites: $(wc -l temp/all_websites.list | cut -d' ' -f1)"
echo "# Number of source subdomains: $(wc -l temp/all_subdomains.list | cut -d' ' -f1)"
echo "# Number of known trackers : $(python -c 'import regexes; print(len(regexes.REGEXES))')"
echo "# Number of blocked subdomains: $(wc -l dist/firstparty-trackers.txt | cut -d' ' -f1)"
echo
cat dist/firstparty-trackers.txt | while read host;