Merge branch 'master' of ssh://trinity.codewiz.org/~/public_html/wiki/git/geekigeeki
[geekigeeki.git] / git-cat
diff --git a/git-cat b/git-cat
index 5b9945ca4255661837f65a189841a8eff6a424b4..91c3eb9f7294086d13b8027ea688244b42d01fce 100755 (executable)
--- a/git-cat
+++ b/git-cat
@@ -1,7 +1,10 @@
-if [ $# -ne 1 ] ; then
+#!/bin/bash
+# Copyright 2009 Bernie Innocenti <bernie@codewiz.org>
+
+if [ $# -ne 1 ]; then
        echo "Usage: $0 {path}"
        exit 1
 fi
 
 info=(`git ls-tree HEAD $1`)
-git-cat-file blob ${info[2]}
+git cat-file blob ${info[2]}