我想从远程复制一个文件到本地系统。现在我在linux系统中使用scp命令。我有一些文件夹或文件名有空格,当我试图复制该文件时,它显示错误消息:“没有这样的文件或目录”。

我试着:

scp ael5105@192.168.0.200:'/home/5105/test/gg/Untitled Folder/a/qy.jpg' /var/www/try/

我在网上看到了一些参考资料,但我不太明白,有人能帮我吗?

我如何在复制过程中转义文件名或目录名中的空格…


当前回答

如果文件或文件夹名称之间有空格,那么你可以简单地在空格前添加一个黑色斜杠“,然后将整个路径放在单引号(”)中,这样就可以工作了。

例子:

假设文件夹名为“Test folder”,位于远程机器的/home/目录中。然后可以使用以下scp命令访问或下载该文件夹。

scp -r <user>@<host>:'/home/Test\ Folder' .

其他回答

你也可以这样做:

scp foo@bar:"\"apath/with spaces in it/\""

第一级引号将由scp解释,然后第二级引号将保留空格。

在尝试从Bash脚本中使用scp从包含空格的远程路径复制文件时,我遇到了类似的问题。

以下是我想到的解决方案:

手动转义路径:

scp user@host:'dir\ with\ spaces/file\ with\ spaces' <destination>
scp user@host:"dir\\ with\\ spaces/file\\ with\\ spaces" <destination>
scp user@host:dir\\\ with\\\ spaces/file\\\ with\\\ spaces <destination>

注意:不需要选项-T(见下文)。

使用双引号+选项-T:

scp -T user@host:"'path with spaces'" <destination>
scp -T user@host:'"path with spaces"' <destination>
scp -T user@host:"\"path with spaces\"" <destination>

注意:如果没有选项-T,这些命令将失败,导致协议错误:文件名与请求不匹配。这里将详细讨论其原因。

使用Bash的printf转义路径:

source="path with spaces"
printf -v source "%q" "${source}"
scp user@host:"${source}" <destination>

用于shell的一行代码:

source="path with spaces"; printf -v source "%q" "${source}"; scp user@host:"${source}" <destination>

注意:没有选项-T也可以正常工作。

在linux-terminal或cmd中,如果字与字之间有空格,必须使用引号(")("")标记。

你应该这样做:

$ '/home/tryhackme'

not

$ /home/tryhackme

scp ael5105@ 192168 /home/5105/test/gg/Untitled?文件夹/a/qy /var/www/try/

的吗?远程和将匹配任何字符,包括空格吗

我有巨大的困难,使这一工作的shell变量包含一个文件名与空格。出于某种原因使用:

file="foo bar/baz"
scp user@example.com:"'$file'"

比如@Adrian的回答似乎失败了。

事实证明,最有效的方法是使用参数展开将反斜杠前置到空格,如下所示:

file="foo bar/baz"
file=${file// /\\ }
scp user@example.com:"$file"