mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-09 18:31:04 +00:00
8 lines
199 B
Bash
8 lines
199 B
Bash
|
#!/bin/bash
|
||
|
# Extracts a sorted list of last translators from the po files
|
||
|
|
||
|
grep -h "Last-Translator" *.po | \
|
||
|
perl -pe 's/"Last-Translator: .*<([^>]+)>\\n"/\1/' | \
|
||
|
grep -v Last-Translator | \
|
||
|
sort
|