Skip to content

Instantly share code, notes, and snippets.

View robertmorel-uk's full-sized avatar

Robert Morel robertmorel-uk

  • Robert Morel
  • UK
  • X @NA
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/