#!/bin/sh

LOCAL_DIR=~/public_html
REMOTE_DIR=/home/phreak/
HOST="dev.gentoo.org"
OPTS="--whole-file --recursive --verbose --links --progress --one-file-system --delete --times --perms --human-readable"

echo "Syncing ~/public_html with ${HOST}/public_html ..."

/usr/bin/rsync ${OPTS} -e /usr/bin/ssh $LOCAL_DIR $HOST:$REMOTE_DIR

