寻求功能不在perl中工作

前端之家收集整理的这篇文章主要介绍了寻求功能不在perl中工作前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我尝试了下面的代码片段,搜索功能似乎不起作用.

funct("ls -ltr /scratch/dummy/dum*");

sub funct {

print "\nRecording\n";
open(SENSOR_LIST1,"$_[0] |") || die "Failed to read sensor list: $!\n";
for $sensor_line1 (<SENSOR_LIST1>) {
   print "$sensor_line1";
}
my $pos = tell SENSOR_LIST1;
print "\nposition is $pos"; #Here the position is 613

print "\nRecording again";
seek (SENSOR_LIST1,SEEK_SET,0);
$pos = tell SENSOR_LIST1; # Here again the position is 613,even after a seek
print "\nposition now is $pos";

for $sensor_line1 (<SENSOR_LIST1>) {
        print "$sensor_line1";
    }
close SENSOR_LIST1;
}

注意:所有搜索变体都不起作用.

输出

即使在寻求之后,该位置也不会改变.它仍然在613.

你们可以检查并告诉我这里的问题是什么?

谢谢.

解决方法

你不能在管道上寻找.

使用临时文件或将数据存储在内存中.

您选择最佳解决方

原文链接:/Perl/778751.html

猜你在找的Perl相关文章