nsbin/remove-pcsystems
Nico Schottelius df2daf524d init
Signed-off-by: Nico Schottelius <nico@manager.schottelius.org>
2017-07-19 17:15:41 +02:00

8 lines
160 B
Bash
Executable file

#!/bin/sh
NEW="nico-webdesign at schottelius.org"
OLD="nicos@pcsystems.de"
if [ ! -d "$1" ]; then
cat "$1" | sed "s,$OLD,$NEW," > $1.tmp
mv $1.tmp $1
fi