summaryrefslogtreecommitdiffstats
path: root/khotkeys/wrk/new
blob: a868fc1cdc8537e15bba60ca1628d1f1f84a4275 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#! /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