#!/bin/sh
LIB=$TURNKEY/tklahelp
if test $1x = x
 then
   echo TLKA help files are available for :
   ls $LIB
echo " "
echo For a list of current music software, type:   lsmusic
echo For a list of music software MAN pages, type:   lsmusicman
echo "     ======================== "
   exit 1
else
for i
do
if test -r ${LIB}/${i}
then
        echo \< TKLA help file: $i
        more ${LIB}/${i}
	echo "     ======================== "
else
        echo There is no TKLA help file called  $i
   	echo
   	echo TKLA help files are available for :
   	ls $LIB
	echo "     ======================== "
fi
done
fi
