If you want to SCP a file from your local system to a remote server location you can do that by running the below command in your Terminal,
scp <local-file-path> remote_user@remote_server_ip:<remote_directory_path>
- scp: Secure Copy is a command-line utility that allows you to securely copy files and directories between two locations.
- local-file-path: Name a absolute path of the file you want to upload from local system.
- remote_user: Remote server username.
- remote_server_ip: IP address or domain detail of the remote server.
- remote_directory_path: Path at the remote server where you want to transfer the file to.
Example:
scp /user/c2c/documents/myFile.txt ubuntu@192.168.0.5 /usr/myDir/
✌️Make sure you provide correct paths based on Windows/Unix/Mac server/local systems.

Have Questions? Post them here!
Provide Feedback For This Article
We take your feedback seriously and use it to improve our content. Thank you for helping us serve you better!
😊 Thanks for your time, your feedback has been registered!
Comments & Discussion
Facing issues? Have questions? Post them here! We're happy to help!