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