我必须通过通过 Expect 模块执行的 SSH 连接到远程机器。如果可能,我必须单独访问STDERR
/STDOUT
并查看输出。我可以重定向脚本的输出,例如
$command = "ssh <script> 2>/tmp/stderr.output"
$exp = Expect->spawn($command) or die "Cannot spawn\n";;
my @command1= $exp->expect(5);
但后来我必须再次远程连接才能检查stderr.output
。有没有一种方法可以期望单独返回STDERR
/ STDOUT
。