私はオープン3を使用しており、解析を行った後、以下のように行を1つずつ印刷しています。行ごとに印刷したくない 保存して一度に印刷したい どうすればよいですか?
while(my $nextLine=<HANDLE_OUT>) {
chomp($nextLine);
if ($nextLine =~ m!<BEA-!){
print "Skipping this line (BEA): |$nextLine|\n" if $debug;
}
print $nextLine."\n";
}