Copying Folder To Server

[Solved] Copying Folder To Server | Groovy - Code Explorer | yomemimo.com
Question : copy folder from on server machine

Answered by : dull-duck-yyvz80ihn2jp

rsync -avz -e 'ssh' /path/to/local/dir user@remotehost:/path/to/remote/dir

Source : | Last Update : Fri, 11 Jun 21

Question : Copying Folder to Server

Answered by : miguel-angel-bravo-martinez

scp -r /home/myfolder  [email protected]:/opt/odoo/
It will copy the folder and all the files in the folder to the destination location.
scp -r /home/myfolder/* [email protected]:/opt/odoo/

Source : https://www.cybrosys.com/blog/copying-multiple-files-simultaneously-using-scp | Last Update : Mon, 23 May 22

Answers related to copying folder to server

Code Explorer Popular Question For Groovy