
gct 2>&1 | grep "No input files specified" > /dev/null
if [ 0 != $? ]
then
  echo "FAILURE:  GCT is either not installed or not in your \$PATH."
  exit 1
fi

exit 0
