#!/bin/sh # Allows users to change project description # $ ssh git@host change-description repo "description" set -e repo=$1; shift echo "${@}" > ${repo}.git/description exit $?