LC=/bin/lc
LS=/bin/ls
if test -s $LC
then
exec $LC "$@"
else
exec $LS "$@"
fi
