Remove various scripts
[grml-scripts.git] / usr_bin / say
diff --git a/usr_bin/say b/usr_bin/say
deleted file mode 100755 (executable)
index 0f3bf16..0000000
+++ /dev/null
@@ -1,20 +0,0 @@
-#!/bin/sh
-# Filename:      say
-# Purpose:       output text via flite or festival (general multi-lingual speech synthesis system)
-# Authors:       grml-team (grml.org), (c) Michael Prokop <mika@grml.org>
-# Bug-Reports:   see http://grml.org/bugs/
-# License:       This file is licensed under the GPL v2.
-################################################################################
-
-if [ $# -eq 0 ] ; then
-  echo "Usage: $0 <text_to_say>"
-  exit 1
-fi
-
-if [ -x /usr/bin/flite ] ; then
-  flite -o play -t "$*"
-elif [ -x /usr/bin/festival ] ; then
-  echo $* | festival --tts
-fi
-
-## END OF FILE #################################################################