Skip to content

Instantly share code, notes, and snippets.

@teknoraver
Last active October 12, 2016 09:26
Show Gist options
  • Save teknoraver/d6e0bb9caeac2ad008f2 to your computer and use it in GitHub Desktop.
Save teknoraver/d6e0bb9caeac2ad008f2 to your computer and use it in GitHub Desktop.
#!/bin/bash
for l in {A..Z}; do
i=1
f=
while curl -sf http://santiebeati.it/$l/$f; do
i=$((i + 1))
f=more$i.html
done
done |awk -F'<|>' '/<FONT SIZE="-2" COLOR="#FFFFFF">/{print$7$9$11}'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment