ssh 问题 - 没有这样的文件或目录

发布于 2024-09-07 22:51:14 字数 414 浏览 4 评论 0原文

我在远程主机中有一个脚本,我将其作为 ./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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

峩卟喜欢 2024-09-14 22:51:14

您是否尝试过使用绝对路径而不是基于 ./ 的路径?它可能会解决这个问题,并且一般来说(特别是当以 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文