Skip to content

Instantly share code, notes, and snippets.

@noureddin
Created January 29, 2017 19:33
Show Gist options
  • Save noureddin/cfddea0a1ef03588c4740b7de4e79ace to your computer and use it in GitHub Desktop.
Save noureddin/cfddea0a1ef03588c4740b7de4e79ace to your computer and use it in GitHub Desktop.
FullCircle magazine downloader
#!/bin/bash
if [ -z "$1" ]; then
wget -qc --show-progress http://dl.fullcirclemagazine.org/issue{117..0}_en.pdf 2>/dev/null
else
wget -qc --show-progress http://dl.fullcirclemagazine.org/issue${1}_en.pdf
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment