#!/usr/bin/env bash oldnum=`cut -f2 Commit-Nummer`; newnum=`expr $oldnum + 1`; echo $newnum > Commit-Nummer; git add *; git commit -m "$newnum";