my $hosts = qx{cat /home/user/hostlist};
my @hostfield = split(/\\n/, $hosts);
print "$_<br />\n" foreach (@hostfield);
输出给了我主机列表但没有插入 br 语句,一旦我开始插入其他命令以执行而不是打印,这将非常重要。我错过了什么吗?
my $hosts = qx{cat /home/user/hostlist};
my @hostfield = split(/\\n/, $hosts);
print "$_<br />\n" foreach (@hostfield);
输出给了我主机列表但没有插入 br 语句,一旦我开始插入其他命令以执行而不是打印,这将非常重要。我错过了什么吗?