annotate test.sh @ 9:5dfc9e768816

moved files
author Robert McIntyre <rlm@mit.edu>
date Wed, 26 Oct 2011 08:54:12 -0700
parents
children
rev   line source
rlm@9 1
rlm@9 2 sound=/home/r/tmp/data1.wav
rlm@9 3
rlm@9 4 if [ -e $sound ]
rlm@9 5 then
rlm@9 6 aplay /home/r/tmp/data1.wav
rlm@9 7 rm /home/r/tmp/data1.wav
rlm@9 8 else
rlm@9 9 echo "$sound does not exist."
rlm@9 10 fi
rlm@9 11