deps/ceylon-sh-setup

19 lines
266 B
Plaintext

for arg
do
if test "$arg" = "--_print-summary"
then
echo "$DESCRIPTION"
exit 0
fi
if test "$arg" = "--_print-description"
then
echo "$LONG_USAGE"
exit 0
fi
if test "$arg" = "--_print-usage"
then
echo "$USAGE"
exit 0
fi
done