blob: 2e8f790320d0eef25df3cbc944801b717c294414 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#!/bin/sh -e
install="$1"
bindir="$2"
sproot="${3#x}"
home="${4#x}"
exthome="${5#x}"
destdir="$6"
while read old new html ; do
"$install" -D -l "../package/admin/execline/command/$new" "$destdir/command/$new"
done < ./tools/name-table
|