gpt4 book ai didi

linux - 为什么 qx(ssh ...) 没有输出?

转载 作者:太空宇宙 更新时间:2023-11-04 03:55:21 25 4
gpt4 key购买 nike

如果我在 Bash 中这样做

a=$(ssh 10.10.10.46 ifconfig)

然后我在 $a 中看到输出,但如果我在 Perl 中这样做

my @a = qx(ssh 10.10.10.46 ifconfig);
print Dumper @a;

然后我没有得到输出。我有 ssh key ,因此不需要登录。

现在我只想获得简单的输出,但后来我想在 bash 中从远程主机通过管道传输到本地主机。将用于 ZFS 复制。

问题

为什么我看不到 Perl 的输出?

最佳答案

open(F,'ssh 10.10.10.46 ifconfig |');
my @a=<F>;
close(F);
print Dumper(@a);

关于linux - 为什么 qx(ssh ...) 没有输出?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24958347/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com