#!/bin/rc
# Usage: install srcfile dstfile owner group mode
switch($1){
case -*
	shift
}
cp $1 $2
switch($#*){
case 5
	chmod $5 $2
}
exit 0
