Adding an old rescanner. Fixes #52.
This commit is contained in:
parent
e5fdc5afaf
commit
a2af1c2fc4
|
@ -0,0 +1,6 @@
|
|||
# Rescan everything that hasn't been scanned in a while
|
||||
awk -F';' '$8 < $(date -d "6 months ago" "+%s")' torrents.csv | cut -d ';' -f1 > hashes_to_rescan
|
||||
grep -vFf hashes_to_rescan infohashes_scanned.txt > new_infohashes_scanned
|
||||
rm hashes_to_rescan
|
||||
mv new_infohashes_scanned infohashes_scanned.txt
|
||||
|
Loading…
Reference in New Issue