borg_public/build_tools/capture_stats.sh

8 lines
226 B
Bash
Raw Normal View History

2023-05-29 10:41:03 +02:00
git log|grep Author| awk -F: '{print $2;}' | sed 's%\([ ]*\)\(.*\)<.*>\([ ]*\)%\2%g' |sort|uniq | \
(
while read; do
n=$(git log | grep Author | grep "$REPLY" | wc | awk '{print $1;}' )
echo "'$REPLY' $n"
done
)