SSH
Recipes
ssh -A username@serversshfs username@server:/path-on-server/ ~/path-to-mount-point -o reconnect# from local to remote
scp file.txt username@server:/path-on-server/
# from remote to local
scp username@server:/path-on-server/file.txt file.txt
# copy all files and folders recursively from local to remote
scp -r * username@server:/path-on-server/ssh-add ~/path-to-keyLinks
Last updated