Skip to content

Instantly share code, notes, and snippets.

@jadedgnome
Created July 7, 2014 17:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jadedgnome/db2266806449e0a3eca4 to your computer and use it in GitHub Desktop.
Save jadedgnome/db2266806449e0a3eca4 to your computer and use it in GitHub Desktop.
#!/bin/bash
# USAGE: ./gifboom-dl.sh <URL>
URL=$1
curl -s $URL |grep -o 'data-video-url=['"'"'"][^"'"'"']*['"'"'"]' | sed -e 's/data-video-url=["'"'"']//' -e 's/["'"'"']$//' |cut -d '"' -f 2 | xargs wget
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment