尝试运行代码:
foreach x ( `cat file`)
echo $x
end
在unix上运行时的预期输出:
1
2
3
4
5
在perl脚本上运行时:
1 2 3 4 5
请告知如何在perl的unix中实现输出?
答案 0 :(得分:0)
请检查以下代码:
@array = (1..10);
foreach my $x (@array)
{
print "$x\n";
}
输出:
C:\Users\dinesh_pundkar\Desktop>perl a.pl
1
2
3
4
5
6
7
8
9
10
答案 1 :(得分:0)
您的代码甚至不在Perl中
foreach x ( `cat file`)
echo $x
end
我假设您正在尝试循环文件内容,然后打印每一行。
在Perl中,您可以使用以下方式执行此操作:
#!/usr/bin/perl
#always use the below 2 lines in your Perl program
use strict;
use warnings;
my $filename = '/path/to/file';
#open file in read mode
open (my $fh, "<", $filename) or die "Could not open file $!";
#use while to iterate over each line
while my $line (<$fh>){
print $line;
}
或者您可以将文件的内容放在数组中然后循环遍历
my @lines = <$fh>;
foreach my $line (@lines){
print $line;
}