phpmyadmin/scripts/locales-contributors
2013-04-02 16:56:25 +02:00

6 lines
155 B
Bash
Executable File

#!/bin/sh
for x in po/*.po ; do
grep 'Team' $x | sed 's/.*: \(.*\)<.*/\1/'
git shortlog -sne --no-merges -- $x | grep '^ [ 0-9][0-9]\{3\}'
done