"ignoring potentially dangerous server-supplied filename" 在 pscp 中
"ignoring potentially dangerous server-supplied filename" in pscp
我想使用 pscp
(来自 PuTTY)将一些文件从远程 Linux 系统复制到我的 Windows PC。我写了一个小脚本,应该将所有 .png
文件复制到我服务器上的一个目录中:
pscp -unsafe root@169.60.147.[redacted]:/root/pytorch-CycleGAN-and-pix2pix/results/summer2winter_yosemite_cyclegan/test_latest/images/*.png C:\files\tests\images
我正在使用 -unsafe
选项,因为每当我 运行 这个命令时,我都会得到这个输出:
ignoring potentially dangerous server-supplied filename '2011-05-29 10:20:21_rec_A.png'
ignoring potentially dangerous server-supplied filename '2011-07-06 16:55:20_real_B.png'
..
ignoring potentially dangerous server-supplied filename '2011-08-30 23:13:10_real_A.png'
pscp: wildcard '*.png' matched no files
但是,当我使用 -unsafe
选项时,该命令仍会输出相同的结果。 Here 是我通读过的关于 pscp
的一些文档,但无济于事。谁有想法?
-unsafe
对此无济于事。
问题是您的文件名包含冒号。 Windows 文件名中不允许使用冒号。
我想使用 pscp
(来自 PuTTY)将一些文件从远程 Linux 系统复制到我的 Windows PC。我写了一个小脚本,应该将所有 .png
文件复制到我服务器上的一个目录中:
pscp -unsafe root@169.60.147.[redacted]:/root/pytorch-CycleGAN-and-pix2pix/results/summer2winter_yosemite_cyclegan/test_latest/images/*.png C:\files\tests\images
我正在使用 -unsafe
选项,因为每当我 运行 这个命令时,我都会得到这个输出:
ignoring potentially dangerous server-supplied filename '2011-05-29 10:20:21_rec_A.png'
ignoring potentially dangerous server-supplied filename '2011-07-06 16:55:20_real_B.png'
..
ignoring potentially dangerous server-supplied filename '2011-08-30 23:13:10_real_A.png'
pscp: wildcard '*.png' matched no files
但是,当我使用 -unsafe
选项时,该命令仍会输出相同的结果。 Here 是我通读过的关于 pscp
的一些文档,但无济于事。谁有想法?
-unsafe
对此无济于事。
问题是您的文件名包含冒号。 Windows 文件名中不允许使用冒号。