darkrc/bin/git-find-head

17 lines
264 B
Plaintext
Raw Normal View History

2022-03-26 08:19:03 +00:00
#!/bin/sh
if [ -z "$2" ]
then target="."
else target="$2"
fi
initial=$(pwd)
for directory in $(find $target -name "$1" -type d)
do
if [ -d "$directory/.git" ]; then
cd $directory
/bin/echo -e "$directory\t$(git log --format="%h" -1)"
cd $initial
fi
done