summaryrefslogtreecommitdiff
path: root/scifi.buetow.org/content/replace.sh
blob: d732248b416a87bc8a1c36be4d795010ee92518e (plain)
1
2
3
4
5
6
#!/bin/bash -x

find . -name \*.inc | while read inc; do
	sed -i -e 's/ü/\ü/g; s/Ü/\Ü/g; s/ö/\ö/g; s/Ö/\Ö/g; s/ä/\ä/g; s/Ä/\Ä/g; s/ß/\ß/g; s/–/-/g;' $inc
done