annotate test.sh @ 11:8a6b1684f536

refactored.
author Robert McIntyre <rlm@mit.edu>
date Thu, 27 Oct 2011 02:27:02 -0700
parents 5dfc9e768816
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