#!/bin/bash
#

[[ "$GARDIR" ]] || GARDIR=/usr/gar
scriptdir="${GARDIR}/gar.scripts"

echo "Available gar scripts:"
echo

#set -x
find "${scriptdir}" -type f -name "gar*" -print0 | xargs -0 -n1 basename | sed 's/^gar//g'

echo
echo "The standard gar make package targets are not included in this list."
echo
