You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
241 B
15 lines
241 B
15 years ago
|
#! /bin/sh
|
||
|
|
||
|
if test $# -lt 2; then
|
||
|
exit
|
||
|
fi
|
||
|
|
||
|
template=$1
|
||
|
shift
|
||
|
while test $# -ge 1; do
|
||
|
dest=$1
|
||
|
dest_writable=`echo $dest | tr .[:lower:] _[:upper:] `
|
||
|
cat $template | sed "s/|FILENAME|/$dest_writable/" > "$dest"
|
||
|
shift
|
||
|
done
|