How to transfer files from server to local via SSH

How to transfer files from server to local via SSH

Posted on:March 26, 2024 at 02:15 PM

This is how you can transfer files from the server to local via SSH.

rsync -avz user_name@<IP>:/your/server/location/ ~/your/local/location

Thanks.