#! /bin/sh

set -e

tmpfile=`tempfile`
sed -e "s#$1##g" $2 > $tmpfile
cat $tmpfile > $2
rm -f $tmpfile

