Forked from sourcerebels/download-phrack-issues.sh
Last active
December 3, 2015 15:32
-
-
Save jay206/26de5d150306bb2cd140 to your computer and use it in GitHub Desktop.
Download all Phrack Magazine Issues
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/sh | |
for i in {1..68} | |
do | |
FILE="phrack${i}.tar.gz" | |
wget http://phrack.org/archives/tgz/${FILE} | |
tar xvzf ${FILE} | |
#rm ${FILE} | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment