Skip to content

Instantly share code, notes, and snippets.

@jay206
Forked from sourcerebels/download-phrack-issues.sh
Last active December 3, 2015 15:32
Show Gist options
  • Save jay206/26de5d150306bb2cd140 to your computer and use it in GitHub Desktop.
Save jay206/26de5d150306bb2cd140 to your computer and use it in GitHub Desktop.
Download all Phrack Magazine Issues
#!/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