#!/tmp/winxksh
#ident	"@(#)proto:desktop/scripts/installf	1.2"
{
	case " $* " in
	*" - "*)
		args=$*
		args=${args% -}
		IFS=
		while read line
		do
			echo "installf $args $line"
		done
		;;
	*)
		echo installf $*
	esac
} >> /tmp/installf.out
