Skip to content

Instantly share code, notes, and snippets.

@KhasMek
Created July 12, 2012 17:30
Show Gist options
  • Save KhasMek/3099509 to your computer and use it in GitHub Desktop.
Save KhasMek/3099509 to your computer and use it in GitHub Desktop.
I needed pr0n
#!/bin/bash
# A script to rape ilikevidsdaily.com
# By KhasMek lover of free pr0n.
# Download (or update) your reference files
# Legend: wget -r (recursive) -l2 (go two levels deep) "url"
wget -r -l1 -t1 http://ilikevidsdaily.com
# Find the embedded videos name
grep -ir video_file ilikevidsdaily.com/post/ | cut -f2 -d "'" | while read line
do
wget "$line".mp4
done
echo pr0n collection complete
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment