Skip to content

Instantly share code, notes, and snippets.

View cirrus3d's full-sized avatar

Kyriakos Terzopoulos cirrus3d

View GitHub Profile
@garethrees
garethrees / rsync.sh
Last active June 2, 2025 22:02
rsync & scp through jump host
# Upload
rsync -av -e "ssh -A JUMP_HOST ssh" FILE_TO_SEND DEST_HOST:/home/gareth/
# Download
rsync -av -e "ssh -A JUMP_HOST ssh" DEST_HOST:~/FILE_TO_DOWNLOAD ~/Downloads/