#!/bin/sh
# usm-install: install a program, using install or devinst
insttype=${insttype:-install}
if [ "$insttype" != install ]; then
	while true; do
		case "$1" in
		-*) shift ;;
		*)  break ;;
		esac
	done
fi
echo >&2 $insttype "$@"
exec v needargs 2 $insttype "$@"
