如何使用 Expect 通过 SSH 连接?
在我的程序中,我使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
首先,您在
$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.
不要直接使用 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.