ssh 问题 - 没有这样的文件或目录
我在远程主机中有一个脚本,我将其作为 ./test /a/b/c/f 运行,并且它在机器上运行得非常好。
现在我在主机上,运行与 ssh root@dst "./test /a/b/c/f" 相同的脚本,这也运行良好。
但是从我的 Perl 脚本中,我使用反引号执行它,
$file = "/a/b/c/f";
`ssh root\@dst "./test $file"`;
或者
system("ssh root\@dst \"./test $file\" ");
它说 bash:./test 没有这样的文件或目录。
我尝试用单个 \ 和 \ 转义 $file。即使那样也行不通。知道如何解决这个问题,
谢谢。
I have a script in remote host which I run as ./test /a/b/c/f and it runs perfectly fine on the maching.
Now I am on host machine, I run the same script as ssh root@dst "./test /a/b/c/f" and this too runs fine.
But from my perl script I execute it using backticks as
$file = "/a/b/c/f";
`ssh root\@dst "./test $file"`;
or
system("ssh root\@dst \"./test $file\" ");
it says bash:./test no such file or directory.
I tried escaping $file with single \ and \. even that does not work. Any idea how to solve this,
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您是否尝试过使用绝对路径而不是基于 ./ 的路径?它可能会解决这个问题,并且一般来说(特别是当以 root 身份连接时)比依赖于设置 cwd 的任何内容(可能是基于历史记录的 bash)每次都以相同的方式设置它更安全。
Have you tried using an absolute path instead of one based on ./ ? It'll probably solve this problem, and it's safer in general (especially when connecting as root) than depending on whatever sets the cwd (probably bash based on history) to set it the same way every time.