编辑:您是否肯定要在scp命令中输入有效路径?例如:
scp test.txt username@remoteserver.com
将会失败(实际上,它只会像您看到的那样打印出命令)。在这种情况下,您将需要提供到远程服务器的有效路径。例如,scp test.txt username@remoteserver.com:~/
用法示例:
发送文件:
scp /path/to/local/file yourremoteusername@servername.com:/path/to/remote/directory
获取文件:
scp yourremoteusername@servername.com:/path/to/remote/file /path/to/local/directory
例子:
将文件从我的桌面发送到远程服务器上的主文件夹:
scp ~/Desktop/myfile.txt john_doe@10.1.1.10:~/
请记住,这~
是您的主目录的快捷方式...例如,/ home /
将文件发送到webroot:
scp ~/Documents/working/index.html john_doe@johndoe.com:/var/www/index.html
在此示例中,用户john_doe将需要在远程/ var / www目录上具有写权限。