mirror of
https://https.git.savannah.gnu.org/git/gettext.git
synced 2026-01-26 15:39:11 +00:00
18 lines
199 B
Sed
18 lines
199 B
Sed
#! /usr/bin/sed -f
|
|
#
|
|
# each line of the form ^..<tab>.* contains the code for a country.
|
|
#
|
|
/^.. / {
|
|
h
|
|
s/^.. \(.*\)/\1./
|
|
s/\&/and/g
|
|
x
|
|
s/^\(..\).*/@item \1/
|
|
G
|
|
p
|
|
}
|
|
#
|
|
# delete the rest
|
|
#
|
|
d
|