Last active
October 20, 2016 14:58
-
-
Save RodrigoAyala/3b94789d64f709176d4a4dace41ca7b3 to your computer and use it in GitHub Desktop.
Descarga automática de los PDF pertenecientes al Padrón Electoral del Servel
This file contains hidden or 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
curl -s http://web.servel.cl/archivos.xml | grep -ohE 'A\d{7}.pdf' | while read x; do curl -o $x http://web.servel.cl/padron/$x; done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment