Preface 1. scp usage The basic command of 1.1 Copy local files to the remote machine Example 1 scp -r ./test/ root@111.222.333:/home/ Example 2 scp -P 6666 -r ./test/ root@111.222.333:/home/ The -r parameter indicates whether to recursively copy the directory 1.2 Copy the remote machine file to the local Example: scp -r root@111.222.333:/home/test ./home/ The above means to put the remote machine's 1.3 Copy a remote file to another remote machine Example: scp -r root@111.222.333:/home/test root@444.555.666:/home/ The above means to put the remote machine's 2. Use sftpFirst, we open git or linux to connect to the server
Format sftp username@hostname For example, sftp root@111.222.333 Next you will enter the sftp> Enter your sftp command 1.1 Copy local files to the remote machine Format: put localfile [remotefile] Example: put -r ./test /home The -r parameter indicates whether to copy recursively 1.2 Copy the remote machine file to the local Format get remotefile [localfile] Example get -r /home/test ./home 1.3 Create/delete remote directories Create a hello directory mkdir hello Delete the hello directory rmdir hello The sftp remote work environment defaults to the user directory, so the hello directory created above will be placed under The first cd /home mkdir hello The second type is mkdir /home/hello 3. What is the difference between scp and sftp? Which one is better? the difference Which one is better? <br /> If you need to operate files occasionally, use Okay, that’s all for now. SummarizeThis is the end of this article about the detailed usage of scp and sftp commands under Linux. For more relevant content about linux scp and sftp commands, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future! You may also be interested in:
|
<<: Html sample code for reading and displaying pictures in a local folder
>>: Do you know the meaning of special symbols in URL?
This article mainly introduces the analysis of My...
When writing the HTTP module of nginx, it is nece...
Online shopping mall database-user information da...
1: Introduction to syslog.conf For different type...
1. Download the axios plugin cnpm install axios -...
Preface: In project development, some business ta...
When it comes to <fieldset> and <legend&...
Table of contents 1. setTimeout() timer 2. Stop t...
Table of contents Preface Target first step: Step...
This article uses examples to explain the Nginx c...
Website, (100-1)% of the content is navigation 1....
The implementation of custom carousel chart using...
I installed redis today and some errors occurred ...
today select * from table name where to_days(time...
By default, PHP on CentOS 7 runs as apache or nob...