SCP command to transfer files between servers?

Chris Worner

Well-known member
Registered
Joined
Apr 15, 2016
Messages
612
Points
28
I used to use wget to transfer file between two VPS servers but I heard of SCP command can do similar function, someone can tell me how to use SCP command to transfer files between servers?
 

BillEssley

Well-known member
Registered
Joined
Feb 19, 2013
Messages
358
Points
28
The SCP (secure copy) command allows users to transfer files between a remote machine running the SSH server and their local machine.

For example, to copy a local file to a remote system, use the following syntax:

Code:
scp /path/to/local/file user@host:/path/to/destination/file
To copy a file from a remote SSH server to the local machine, use the following syntax:

Code:
scp -r user@host:/path/to/remote/file /path/to/destination/file

Hope it helps!
 
Newer Threads
Replies
0
Views
2,390
Replies
10
Views
8,057
Replies
10
Views
10,126
Replies
0
Views
1,910
Latest Threads
Replies
0
Views
370
Replies
2
Views
297
Replies
1
Views
263
Replies
2
Views
854
Replies
1
Views
600
Recommended Threads

Sponsors

Tag Cloud

You are using an out of date browser. It may not display this or other websites correctly.
You should upgrade or use an alternative browser.

Top