#!/bin/sh
# * help
#   Obtiene los comando habilitados
#   ssh git@host help

set -e

# Gets three lines from every git-shell-command
for c in `dirname $0`/*; do
    head -q -n4 $c | tail -n3 | sed "s/^..//"
    echo
done