From 9e834a890b022a53e6380553a2f1c298cb291c6a Mon Sep 17 00:00:00 2001 From: Jack Random Date: Wed, 30 Jul 2014 02:33:02 +0200 Subject: foo --- scripts/umlauts.sh | 26 -------------------------- 1 file changed, 26 deletions(-) delete mode 100755 scripts/umlauts.sh (limited to 'scripts/umlauts.sh') diff --git a/scripts/umlauts.sh b/scripts/umlauts.sh deleted file mode 100755 index 30b0dd5..0000000 --- a/scripts/umlauts.sh +++ /dev/null @@ -1,26 +0,0 @@ -#!/bin/zsh -# replace german umlauts and predefined character sequences -# with html-entities in a file given as parameter -# original script: -# Michael Luthardt 2007 -# http://dr-luthardt.de/ - -sed -i -e 's/\Ä/\Ä/g' \ - -i -e 's/\ä/\ä/g' \ - -i -e 's/\Ö/\Ö/g' \ - -i -e 's/\ö/\ö/g' \ - -i -e 's/\Ü/\Ü/g' \ - -i -e 's/\ü/\ü/g' \ - -i -e 's/\ß/\ß/g' \ - -i -e 's/\^-/\–/g' \ - -i -e 's/\^ /\ /g' \ - -i -e 's/\^/\>/g' \ - -i -e 's/\^&/\&/g' \ - -i -e 's/\^\^/\^/g' \ - -i -e 's/\^x/\×/g' \ - -i -e 's/\^r/\→/g' \ - -i -e 's/\^b/\•/g' \ - -i -e 's/\^e/\⇄/g' \ -$1 - -- cgit v1.2.1