Skip to content

Instantly share code, notes, and snippets.

@jstrosch
Created June 14, 2014 03:46
Show Gist options
  • Save jstrosch/c9504ad646b28a451963 to your computer and use it in GitHub Desktop.
Save jstrosch/c9504ad646b28a451963 to your computer and use it in GitHub Desktop.
A [very] small script to download all issues of Phrack
#!/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