9 lines
136 B
Bash
9 lines
136 B
Bash
#!/bin/sh
|
|
|
|
read -p "Beschreibung: " mydesc
|
|
|
|
for a in $*
|
|
do
|
|
cat $a | sed "s/DESCRIPTION/${mydesc}/g" > $a.tmp
|
|
mv $a.tmp $a
|
|
done
|