BASH: Rsync between servers

Pull from a remote server:

rsync -avze "ssh -p [port#] -i [private-key-file]" [username]@[ip address]:[path-to-file-on-server] [path-to-destination]

Push to a remote server:

rsync -avze "ssh -p [port#] -i [private-key-file]" [path-to-file] [username]@[ip-address]:[path-to-destination]

"How are you gonna keep ‘em down on the farm once they’ve seen Karl Hungus?"