在Linux系统中,可以使用scp命令通过SSH传输文件。
scp命令的语法如下:
scp [可选参数] [源文件路径] [目标服务器用户名@目标服务器IP地址或主机名:目标文件路径]
其中,可选参数如下:
-r:递归复制整个目录。
-P 端口号:指定SSH连接的端口,默认为22。
-i 私钥文件:指定私钥文件路径。
示例:
scp /path/to/local/file.txt username@remote:/path/to/destination/file.txt
这将把本地的file.txt
文件复制到远程服务器上的/path/to/destination/
目录下。
scp username@remote:/path/to/remote/file.txt /path/to/destination/file.txt
这将把远程服务器上的/path/to/remote/file.txt
文件复制到本地的/path/to/destination/
目录下。
scp -r /path/to/local/directory username@remote:/path/to/destination/
这将递归地复制本地的directory
目录及其中的所有文件和子目录到远程服务器上的/path/to/destination/
目录下。
请根据实际情况替换命令中的路径和服务器信息。