add todo command to README

This commit is contained in:
Austin Burk 2022-08-23 17:57:48 -04:00
parent e87dcaa36c
commit 6718b5c9e0

@ -21,3 +21,9 @@ For all TLDs in tld.txt, try *.string.tld
```
for tld in $(cat tld.txt); do cat middle_segments.txt|awk '{print $1".'$tld'"}'; done|pv -l |xargs node try_url.js
```
Get a list of hashes which have not yet been identified
```
comm -23 <(sort -u data/current.txt) <(awk -F= '{print $1}' data/identified.txt |sort -u) > todo.txt
```