nsbin/DIR_aendern/rechte.aendern
Nico Schottelius d3c6e29902 Initial commit
2006-07-20 09:54:37 +02:00

9 lines
137 B
Bash

#!/bin/sh
read -p "Rechte gehoeren: " myrechte
for a in $*
do
cat $a | sed "s/FIRMA/${myrechte}/g" > $a.tmp
mv $a.tmp $a
done