#!/bin/bash
#
# v1.0 - 24-07-2013  - Original hack
# v1.1 - 28-07-2013  - Removed file digit storage
#                      and tidied up (shrink code size)
#
###################################################################
###################################################################
#
loops=0
digit="x"
while [ ! -z $digit ]; do
  digit=${1:$loops:1}
  if [ ! -z $digit ]; then
       rxcode=$rxcode$digit" "
  fi
  let loops+=1
done
# echo "Command:- "$rxcode                    # test print to scrn!!
/home/irlp/custom/wavplay_nice_custom $rxcode
#
exit 0


