如何使用 Expect 通过 SSH 连接?

发布于 2024-09-08 10:44:44 字数 480 浏览 3 评论 0原文

在我的程序中,我使用 Expect 来运行 ssh。我的程序是

$argument="[email protected]";
$exp->spawn("ssh $argument") or die "Cannot spawn ssh to ip $ssh_ip_address\n";

但是即使它无法生成 ssh 它也不会打印 Cannot spawn ssh to ip $ssh_ip_address。您能帮我理解为什么它会给出错误消息吗?

In my program I use Expect to run ssh. My program is

$argument="[email protected]";
$exp->spawn("ssh $argument") or die "Cannot spawn ssh to ip $ssh_ip_address\n";

But even if it is not able to spawn ssh it is not printing Cannot spawn ssh to ip $ssh_ip_address. Can you please help me understand why it does give the error message?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

眼眸 2024-09-15 10:44:44

首先,您在 $argument 声明中使用了双引号,这意味着变量将被插入到其内容中。 @10 将被计算为数组 @10 的内容。使用单引号以避免插值。

请记住,始终始终包含use strict;在每个 Perl 模块、程序和脚本的顶部使用警告;。它将使您避免许多隐藏的错误,从而避免很多头痛。 :)

对于更多内容,您必须发布您正在运行的实际代码。

First of all, you used double quotes for your $argument declaration, which means that variables will be interpolated in its contents. @10 will be evaluated to the contents of the array @10. Use single quotes to avoid interpolation.

And remember, always always include use strict; use warnings; at the top of every Perl module, program and script. It will save you from lots of hidden errors and therefore a lot of headache. :)

For anything more, you'll have to post the actual code you're running.

晨光如昨 2024-09-15 10:44:44

不要直接使用 Expect,而是运行 Net::SSH::Expect (它封装了与 Expect 的 SSH 交互)或 Net::OpenSSH (这不使用 Expect,并建议不要使用)。另外,始终使用严格和警告。

Instead of using Expect directly, run either Net::SSH::Expect (which wraps up SSH interaction with Expect) or Net::OpenSSH (whuch doesn't use Expect, and advises against it). Also, always use strict and warnings.

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