#!/bin/tcsh -f
#    lsins : list instrument algorithms in the Eastman Csound Libraru

set TUTDIR = "$CSLIBDIR/tut/ins"
set INSDIR = "$CSLIBDIR/ins"

echo "   (1) List of TUTORIAL instrument algorithms in the Eastman Csound Library:"
#ls -CF $FUNCDIR
ls -C $TUTDIR
echo "           -   -    -    -    -    - "

echo "   (2) List of (non-tutorial) instrument algorithms in the Eastman Csound Library:"
ls -C $INSDIR

echo ' To create a Csound orchestra file incorporating any of the algorithms'
echo ' above, you can use the command   "mko"'
# echo "           -   -    -    -    -    - "
 echo "          --------------------------"
