xyzio

Archive for May 2022

rsync a file using a ssh .pem public key

leave a comment »

Using a public SSH key with rsync to transfer a single file. The key is the -e option which modifies the SSH command used by rsync.


rsync -a ./localfile.jpg [email protected]:/home/user/localfile.jpg -e 'ssh -i keypath.pem'

Written by M Kapoor

May 9, 2022 at 2:28 am

Posted in Programming

Tagged with , ,