auto-update on Mon 3 Sep 06:49:40 UTC 2018

This commit is contained in:
Alec Muffett 2018-09-03 06:49:40 +00:00
parent e98a5d682c
commit 0629e82e1e
2 changed files with 133 additions and 129 deletions

256
README.md

File diff suppressed because it is too large Load Diff

View File

@ -1,9 +1,13 @@
#!/bin/sh
log=ct-log.txt
tf=/tmp/ctget$$.txt
curl "https://crt.sh/?q=%25.onion" |
perl -nle 'next unless m!TD.*onion!; s!<.*?>! !g; s!(^\s+|\s+$)!!g; print' |
sort -u >$log
sort -u >$tf
test -s $tf && cp $tf $log
rm $tf
exit 0