Sophie

Sophie

distrib > Mageia > 5 > i586 > media > core-updates > by-pkgid > 03fb55f49f638cb73389f6ce84919469 > files > 287

git-core-2.7.4-1.mga5.i586.rpm

#!/bin/sh

if tty -s
then
	echo "Run 'help' for help, or 'exit' to leave.  Available commands:"
else
	echo "Run 'help' for help.  Available commands:"
fi

cd "$(dirname "$0")"

for cmd in *
do
	case "$cmd" in
	help) ;;
	*) [ -f "$cmd" ] && [ -x "$cmd" ] && echo "$cmd" ;;
	esac
done