Created
June 14, 2014 03:46
-
-
Save jstrosch/c9504ad646b28a451963 to your computer and use it in GitHub Desktop.
A [very] small script to download all issues of Phrack
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
#!/bin/bash | |
#Download all issues of phrack | |
for i in {1..68} | |
do | |
echo "Downloading... http://www.textfiles.com/magazines/PHRACK/PHRACK$i" | |
wget "http://www.textfiles.com/magazines/PHRACK/PHRACK$i" | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment