#!/bin/bash -- # 2007/04/30 Azundris init JOBS=`dcop kttsd KSpeech getTextJobNumbers` if [ "x$JOBS" = "x" ] then exit fi JOBS=$JOBS, while : do JOB=`echo $JOBS|cut -d, -f1` JOBS=`echo $JOBS|cut -d, -f2-` echo "removing speech job $JOB ..." dcop kttsd KSpeech removeText $JOB if [ "x$JOBS" = "x" ] then exit fi done