lib/scripts/feeder
changeset 12111 d942348d8faf
parent 10555 2323ec838401
child 13076 70704dd48bd5
--- a/lib/scripts/feeder	Fri Nov 09 00:00:53 2001 +0100
+++ b/lib/scripts/feeder	Fri Nov 09 00:01:55 2001 +0100
@@ -21,7 +21,6 @@
   echo "    -h TEXT      head text"
   echo "    -p           emit my pid"
   echo "    -q           do not pipe stdin"
-  echo "    -s           filter symbols"
   echo "    -t TEXT      tail text"
   echo
   echo "  Output texts (pid, head, stdin, tail), then wait to be terminated."
@@ -43,10 +42,9 @@
 HEAD=""
 EMITPID=""
 QUIT=""
-SYMBOLS=""
 TAIL=""
 
-while getopts "h:pqst:" OPT
+while getopts "h:pqt:" OPT
 do
   case "$OPT" in
     h)
@@ -58,9 +56,6 @@
     q)
       QUIT=true
       ;;
-    s)
-      SYMBOLS=true
-      ;;
     t)
       TAIL="$OPTARG"
       ;;
@@ -84,4 +79,4 @@
 #set by configure
 AUTO_PERL=perl
 
-exec "$AUTO_PERL" -w "$DIR"/feeder.pl "$HEAD" "$EMITPID" "$QUIT" "$SYMBOLS" "$TAIL"
+exec "$AUTO_PERL" -w "$DIR"/feeder.pl "$HEAD" "$EMITPID" "$QUIT" "$TAIL"