10 lines
134 B
Text
10 lines
134 B
Text
|
#!/bin/sh
|
||
|
|
||
|
read -p "Identifikation: " myident
|
||
|
|
||
|
for a in $*
|
||
|
do
|
||
|
cat $a | sed "s/IDENT/${myident}/g" > $a.tmp
|
||
|
mv $a.tmp $a
|
||
|
done
|