scp遇到路径中有空格
Posted mafeng
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了scp遇到路径中有空格相关的知识,希望对你有一定的参考价值。
sudo scp [email protected]:/test/soft/123/Microsoft SQL Server 2000.iso . 错误!
sudo scp [email protected]:"/test/soft/123/Microsoft SQL Server 2000.iso" . 错误!
sudo scp [email protected]:/test/soft/123/Microsoft SQL Server 2000.iso" . 错误!
sudo scp [email protected]:"/test/soft/123/Microsoft SQL Server 2000.iso" . 错误!
正确方法是:
sudo scp [email protected]:"/test/soft/123/Microsoft\ SQL\ Server\ 2000.iso" .
也就是说
1、需要用括号(是双引号)把路径扩起来。
2、需要在空格前加两个
以上是关于scp遇到路径中有空格的主要内容,如果未能解决你的问题,请参考以下文章
eclipse Java工作空间 为啥说用有空格、中文的路径不好?
JAVA关于java中 类.class.getResource("/").getPath()获取路径有空格的问题