Skip to content

Instantly share code, notes, and snippets.

@sourcerebels
Created February 20, 2012 20:14
Show Gist options
  • Save sourcerebels/1871137 to your computer and use it in GitHub Desktop.
Save sourcerebels/1871137 to your computer and use it in GitHub Desktop.
Download all Phrack Magazine Issues
#!/bin/sh
for i in {1..67}
do
FILE="phrack${i}.tar.gz"
wget http://phrack.org/archives/tgz/${FILE}
tar xvzf ${FILE}
rm ${FILE}
done
@dvdesolve
Copy link

No need to remember issue numbers at all:

wget -r -nH --no-parent --reject="index.html*" -e robots=off http://www.phrack.org/archives/tgz/

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment