# 1999-11-03, 2012-10-20 # simple sed script which changes kraut umlauts # from quoted-printable notation # to ae oe ue and ss respectively. # also deletes spaces at end of line. # #s/=20$// #s/=FC/ue/ #s/=E4/ae/ #s/=DF/ss/ #s/=F6/oe/ #s/= // # ## Note: the umlauts *must* be escaped with a backslash! s/=20$//g s/=E4/\ä/g s/=F6/\ö/g s/=FC/\ü/g s/=DF/\ß/g #EOF