#!/bin/sh -
#
#  $Id: instprofile,v 1.2 2002/07/06 16:41:39 dgregor Exp $
#

if [ $# -ne 1 ]; then
	echo "`basename $0`: invalid number of arguments" >&2
	echo "usage: `basename $0` <host>" >&2
	exit 1
fi

host="$1"; shift

scp ~/.profile ${host}:
