Merge branch 'master' of feistymeow.org:feisty_meow
[feisty_meow.git] / scripts / database / show_stripper.sh
diff --git a/scripts/database/show_stripper.sh b/scripts/database/show_stripper.sh
deleted file mode 100644 (file)
index ee719ee..0000000
+++ /dev/null
@@ -1,11 +0,0 @@
-#!/bin/bash
-if [ -z "$1" -o -z "$2" ]; then
-  echo "This program accepts a file name with CSV formatted movie database"
-  echo "information and extracts a particular show's episodes.  You need to"
-  echo "provide the file name as the first parameter and the show name as"
-  echo "the second parameter."
-  exit 2
-fi
-cat "$1" | grep -i "$2" | sed -n -e 's/^\"\([a-zA-Z0-9][a-zA-Z0-9 ]*\)\",\"\([^\"][^\"]*\)\",\"\([^\"][^\"]*\)\"$/"\2" -- \3  [\1]/p' | grep -i ".*$2.* -- " | sort | uniq
-
-