From 03316ea0d13c67798f51664f8c13dde41f23a03c Mon Sep 17 00:00:00 2001 From: gotbletu Date: Fri, 24 May 2013 15:12:34 -0700 Subject: [PATCH] rm porn --- skeet-empflix.sh | 38 -------------------------------------- skeet-pornotube.sh | 38 -------------------------------------- skeet-spankwire.sh | 38 -------------------------------------- skeet-xvideos.sh | 38 -------------------------------------- skeet-youjizz.sh | 39 --------------------------------------- skeet-youporn.sh | 38 -------------------------------------- 6 files changed, 229 deletions(-) delete mode 100755 skeet-empflix.sh delete mode 100755 skeet-pornotube.sh delete mode 100755 skeet-spankwire.sh delete mode 100755 skeet-xvideos.sh delete mode 100755 skeet-youjizz.sh delete mode 100755 skeet-youporn.sh diff --git a/skeet-empflix.sh b/skeet-empflix.sh deleted file mode 100755 index feb1366..0000000 --- a/skeet-empflix.sh +++ /dev/null @@ -1,38 +0,0 @@ -#!/bin/bash -# _ _ _ _ -# __ _ ___ | |_| |__ | | ___| |_ _ _ -# / _` |/ _ \| __| '_ \| |/ _ \ __| | | | -#| (_| | (_) | |_| |_) | | __/ |_| |_| | -# \__, |\___/ \__|_.__/|_|\___|\__|\__,_| -# |___/ -# http://gotbletu.blogspot.com/ | http://www.youtube.com/user/gotbletu -# -# description: search empflix.com from command line, then streams video using mplayer -# useage: skeet-empflix -# requires: mplayer lynx quvi -# date: March 09, 2013 - keyword="$(echo "&what=$@&sort=relevance&su=anytime&sd=all" | sed 's/ /\%20/g')" - pagenum=3 - pagenum_to_url=$(for num in $(seq 1 "$pagenum"); do echo "http://www.empflix.com/search.php?page=$num$keyword"; done ) - videourl=$(echo "$pagenum_to_url" | while read line; do lynx -dump "$line" \ - | awk '/empflix\.com\/videos/ {print $2}' | awk '!x[$0]++' | tac ; done) - -# Set to endless loop -while true -do - # Set the prompt for the select command - PS3="Type a number to play or 'Ctrl+C' to quit: " - - # Create a list of files to display - fileList=$(echo $videourl) - - # Show a menu and ask for input. If the user entered a valid choice, - # then invoke the player on that file - select fileName in $fileList; do - if [ -n "$fileName" ]; then - quvi --exec "mplayer %u" "${fileName}" - fi - break - done - clear && clear -done diff --git a/skeet-pornotube.sh b/skeet-pornotube.sh deleted file mode 100755 index 07ce10a..0000000 --- a/skeet-pornotube.sh +++ /dev/null @@ -1,38 +0,0 @@ -#!/bin/bash -# _ _ _ _ -# __ _ ___ | |_| |__ | | ___| |_ _ _ -# / _` |/ _ \| __| '_ \| |/ _ \ __| | | | -#| (_| | (_) | |_| |_) | | __/ |_| |_| | -# \__, |\___/ \__|_.__/|_|\___|\__|\__,_| -# |___/ -# http://gotbletu.blogspot.com/ | http://www.youtube.com/user/gotbletu -# -# description: search pornotube.com from command line, then streams video using mplayer -# useage: skeet-pornotube -# requires: mplayer lynx youtube-dl -# date: 2/17/2013 - keyword="$(echo "http://www.pornotube.com/search.php?q=$@" | sed 's/ /\+/g')" - pagenum=3 - pagenum_to_url=$(for num in $(seq 1 "$pagenum"); do echo "$keyword&page=$num"; done ) - videourl=$(echo "$pagenum_to_url" | while read line; do curl -s "$line" \ - | awk '/pornotube.com\/m/ && !/class/' | cut -d\" -f 2 | awk '!x[$0]++' | tac ; done) - -# Set to endless loop -while true -do - # Set the prompt for the select command - PS3="Type a number to play or 'Ctrl+C' to quit: " - - # Create a list of files to display - fileList=$(echo $videourl) - - # Show a menu and ask for input. If the user entered a valid choice, - # then invoke the player on that file - select fileName in $fileList; do - if [ -n "$fileName" ]; then - mplayer $( youtube-dl -g "${fileName}" ) - fi - break - done - clear && clear -done diff --git a/skeet-spankwire.sh b/skeet-spankwire.sh deleted file mode 100755 index 6c84d23..0000000 --- a/skeet-spankwire.sh +++ /dev/null @@ -1,38 +0,0 @@ -#!/bin/bash -# _ _ _ _ -# __ _ ___ | |_| |__ | | ___| |_ _ _ -# / _` |/ _ \| __| '_ \| |/ _ \ __| | | | -#| (_| | (_) | |_| |_) | | __/ |_| |_| | -# \__, |\___/ \__|_.__/|_|\___|\__|\__,_| -# |___/ -# http://gotbletu.blogspot.com/ | http://www.youtube.com/user/gotbletu -# -# description: search spankwire.com from command line, then streams video using mplayer -# useage: skeet-spankwire -# requires: mplayer lynx quvi -# date: March 09, 2013 - keyword="$(echo "http://www.spankwire.com/search/straight/keyword/$@" | sed 's/ /\%20/g')" - pagenum=5 - pagenum_to_url=$(for num in $(seq 1 "$pagenum"); do echo "$keyword?Sort=Relevance&Page=$num"; done ) - videourl=$(echo "$pagenum_to_url" | while read line; do lynx -dump "$line" \ - | awk '/www\.spankwire\.com/ && /video/ {print $2}' | awk '!x[$0]++' | tac ; done) - -# Set to endless loop -while true -do - # Set the prompt for the select command - PS3="Type a number to play or 'Ctrl+C' to quit: " - - # Create a list of files to display - fileList=$(echo $videourl) - - # Show a menu and ask for input. If the user entered a valid choice, - # then invoke the player on that file - select fileName in $fileList; do - if [ -n "$fileName" ]; then - quvi --exec "mplayer %u" "${fileName}" - fi - break - done - clear && clear -done diff --git a/skeet-xvideos.sh b/skeet-xvideos.sh deleted file mode 100755 index f1e3803..0000000 --- a/skeet-xvideos.sh +++ /dev/null @@ -1,38 +0,0 @@ -#!/bin/bash -# _ _ _ _ -# __ _ ___ | |_| |__ | | ___| |_ _ _ -# / _` |/ _ \| __| '_ \| |/ _ \ __| | | | -#| (_| | (_) | |_| |_) | | __/ |_| |_| | -# \__, |\___/ \__|_.__/|_|\___|\__|\__,_| -# |___/ -# http://gotbletu.blogspot.com/ | http://www.youtube.com/user/gotbletu -# -# description: search xvideos.com from command line, then streams video using mplayer -# useage: skeet-xvideos -# requires: mplayer lynx youtube-dl -# date: 2/17/2013 - keyword="$(echo "http://www.xvideos.com/?k=$@" | sed 's/ /\+/g')" - pagenum=5 - pagenum_to_url=$(for num in $(seq 1 "$pagenum"); do echo "$keyword&p=$num"; done ) - videourl=$(echo "$pagenum_to_url" | while read line; do lynx -dump "$line" \ - | awk '/xvideos\.com\/video/ {print $2}' | awk '!x[$0]++' | tac ; done) - -# Set to endless loop -while true -do - # Set the prompt for the select command - PS3="Type a number to play or 'Ctrl+C' to quit: " - - # Create a list of files to display - fileList=$(echo $videourl) - - # Show a menu and ask for input. If the user entered a valid choice, - # then invoke the player on that file - select fileName in $fileList; do - if [ -n "$fileName" ]; then - mplayer $( youtube-dl -g "${fileName}" ) - fi - break - done - clear && clear -done diff --git a/skeet-youjizz.sh b/skeet-youjizz.sh deleted file mode 100755 index 161934d..0000000 --- a/skeet-youjizz.sh +++ /dev/null @@ -1,39 +0,0 @@ -#!/bin/bash -# _ _ _ _ -# __ _ ___ | |_| |__ | | ___| |_ _ _ -# / _` |/ _ \| __| '_ \| |/ _ \ __| | | | -#| (_| | (_) | |_| |_) | | __/ |_| |_| | -# \__, |\___/ \__|_.__/|_|\___|\__|\__,_| -# |___/ -# http://gotbletu.blogspot.com/ | http://www.youtube.com/user/gotbletu -# -# description: search youjizz.com from command line, then streams video using mplayer -# useage: skeet-youjizz -# requires: mplayer lynx youtube-dl -# date: 2/17/2013 - keyword="$(echo "http://www.youjizz.com/search/$@" | sed 's/ /\-/g')" - pagenum=5 - pagenum_to_url=$(for num in $(seq 1 "$pagenum"); do echo "$keyword-$num".html""; done ) - videourl=$(echo "$pagenum_to_url" | while read line; do lynx -dump "$line" \ - | awk '/\.com\/videos/ {print $2}' | awk '!x[$0]++' | tac ; done) -# newlink=$(lynx --dump "$keyword" | awk '/\.com\/videos/ {print $2}' | awk '!x[$0]++') - -# Set to endless loop -while true -do - # Set the prompt for the select command - PS3="Type a number to play or 'Ctrl+C' to quit: " - - # Create a list of files to display - fileList=$(echo $videourl) - - # Show a menu and ask for input. If the user entered a valid choice, - # then invoke the player on that file - select fileName in $fileList; do - if [ -n "$fileName" ]; then - mplayer $( youtube-dl -g "${fileName}" ) - fi - break - done - clear && clear -done diff --git a/skeet-youporn.sh b/skeet-youporn.sh deleted file mode 100755 index c7be6ec..0000000 --- a/skeet-youporn.sh +++ /dev/null @@ -1,38 +0,0 @@ -#!/bin/bash -# _ _ _ _ -# __ _ ___ | |_| |__ | | ___| |_ _ _ -# / _` |/ _ \| __| '_ \| |/ _ \ __| | | | -#| (_| | (_) | |_| |_) | | __/ |_| |_| | -# \__, |\___/ \__|_.__/|_|\___|\__|\__,_| -# |___/ -# http://gotbletu.blogspot.com/ | http://www.youtube.com/user/gotbletu -# -# description: search youporn.com from command line, then streams video using mplayer -# useage: skeet-youporn -# requires: mplayer lynx - grepmatch=$(echo "$@" | sed 's/ /.*/g') - keyword="$(echo "http://www.youporn.com/search?query=$@&type=straight" | sed 's/ /\+/g')" - pagenum=3 - pagenum_to_url=$(for num in $(seq 1 "$pagenum"); do echo "$keyword&page=$num"; done ) - videourl=$(echo "$pagenum_to_url" | while read line; do lynx -dump "$line" \ - | awk '/watch/ {print $2}' | cut -d\/ -f1-6 | grep -iE $grepmatch | awk '!x[$0]++' | tac ; done) - -# Set to endless loop -while true -do - # Set the prompt for the select command - PS3="Type a number to play or 'Ctrl+C' to quit: " - - # Create a list of files to display - fileList=$(echo $videourl) - - # Show a menu and ask for input. If the user entered a valid choice, - # then invoke the player on that file - select fileName in $fileList; do - if [ -n "$fileName" ]; then - mplayer $( lynx -dump ${fileName} | awk '/mp4/ {print $2}' | head -1) - fi - break - done - clear && clear -done