在Linux中使用scp命令可以将文件或目录从一台服务器复制到另外一台服务器。
从源服务器复制文件到目标服务器
scp /path/to/source_file username@destination:/path/to/destination_directory
从源服务器复制目录及其内容到目标服务器
scp -r /path/to/source_directory username@destination:/path/to/destination_directory
注意事项:
/path/to/source_file
为要复制的文件路径;
username
为目标服务器上的有效用户名;
destination
为目标服务器的IP地址或主机名;
/path/to/destination_directory
为目标服务器上存放复制文件的目录路径。
cpp
scp /home/jenkins/config/workspace/20231128145025.tar.gz root@10.10.111.111:/home/
注意此命令是在源服务器下执行,上面代码的意思是,将当前登录的服务器的/home/jenkins/config/workspace目录下的20231128145025.tar.gz压缩包文件复制到10.10.111.111服务器的root用户下的/home路径