Created
July 31, 2017 20:56
-
-
Save rfilmyer/1f3c59c06f5ee523bbbe75c3ed745428 to your computer and use it in GitHub Desktop.
Batch process pre-downloaded HTML files through Throwverwatch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
for f in html/*.html; do | |
name=`echo $f | grep -o "[0-9]\{4\}\.[0-9]\{2\}\.[0-9]\{2\}-[0-9]\{2\}\.[0-9]\{2\}\.[0-9]\{2\}"` | |
echo $name | |
python ../throwverwatch --from $f --date $name | |
done | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment