# usage: brfcheckall [directory]
# 
# brfcheckall - this script will automatically analyze all files in the
#               specified directory or the current directory if none
#               is specified.
#
# NOTE: to execute this script, appx must be accessible from your
#       PATH environment variable.
#
# Did they specify a directory?  If so, use it.  Otherwise, just use the
# current working directory.

if [ $# = 1 ]
then
    for fi in $1/*.dat
    do
        echo brfcheckall is currently verifying: $fi
    	appx -v=$fi
    done
else
    for fi in ${PWD}/*.dat
    do
        echo brfcheckall is currently verifying: $fi
    	appx -v=$fi
    done
fi
#
#
# Modification History:
#
# 12/08/93   MJV   Modified to produce a message showing what is currently
#                  being checked (ECR 1967).
