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,417
Replies
10
Views
8,165
Replies
10
Views
10,284
Replies
0
Views
1,951
Latest Threads
Replies
1
Views
668
Replies
3
Views
649
Replies
1
Views
559
Replies
2
Views
1,161
Replies
1
Views
768
Recommended Threads
Replies
0
Views
2,714
Replies
12
Views
4,862

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