lyx_mirror/po/extract_email.sh

8 lines
199 B
Bash
Raw Normal View History

#!/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