6 lines
155 B
Bash
Executable File
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
|