Skip to content

Instantly share code, notes, and snippets.

@ohhdemgirls
Last active August 29, 2015 13:56
Show Gist options
  • Save ohhdemgirls/9302568 to your computer and use it in GitHub Desktop.
Save ohhdemgirls/9302568 to your computer and use it in GitHub Desktop.
Videobam.com downloader
#!/bin/bash
# USAGE ./bam.sh URL
url=$1
out=$(echo $url |sed 's/^.\{,20\}//')
get=$(curl -s $url |grep ',"url":"' |sed -e 's/^.\{,241\}//' -e 's/\"','"auto.*//' -e 's/\\//g')
wget -c $get -O $out.mp4
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment