Skip to content

Instantly share code, notes, and snippets.

@jadedgnome
Created July 7, 2014 17:41
Show Gist options
  • Save jadedgnome/6e458056eecf1f08798f to your computer and use it in GitHub Desktop.
Save jadedgnome/6e458056eecf1f08798f to your computer and use it in GitHub Desktop.
downloader
#!/bin/bash
# makeagif.com dl
# USAGE: ./makegif-dl.sh <URL>
URL=$1
curl -s $URL |grep -o '<img src=['"'"'"][^"'"'"']*['"'"'"]' | sed -e 's/<img src=["'"'"']//' -e 's/["'"'"']$//' |grep .cdn | xargs curl --retry 3 -O -J
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment