#!/bin/sh # * help # Obtiene los comando habilitados # ssh git@host help set -e # Gets the initial comment after the shebeng from every git-shell-command for c in "$(dirname "$0")"/*; do sed -rn '2,/^[^#]/s/^# ?//p' "$c" echo done