Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@jdh30
Last active May 17, 2021 21:51
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jdh30/3fab3ab43971986c2595009021231245 to your computer and use it in GitHub Desktop.
Save jdh30/3fab3ab43971986c2595009021231245 to your computer and use it in GitHub Desktop.
Upload files from this machine to another without clobbering.
# Upload files from this machine to another without clobbering.
# Usage:
# ./upload.sh <srcdir> <user@host> <dstdir>
tar -cz $1 | ssh $2 "tar -kzxf - -C ${3}"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment