lyx_mirror/po/extract_email.sh
Richard Kimberly Heck 1bce20fca6 Add script to extract emails.
Also, remove email for Zoran Filipovic, since it is dead.
2019-05-05 14:10:49 -04:00

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