Beefy Boxes and Bandwidth Generously Provided by pair Networks
Just another Perl shrine
 
PerlMonks  

Re: Improvement on script needed.

by Aragorn (Curate)
on Sep 08, 2003 at 13:01 UTC ( [id://289763]=note: print w/replies, xml ) Need Help??


in reply to Improvement on script needed.

Something like this?
#!/usr/bin/perl use strict; use warnings; my ($cur_rec, $prev_rec, $line) = ("", "", ""); while ($line = <STDIN>) { $cur_rec = join("", (split(/\|/, $line))[1..4]); if ($cur_rec ne $prev_rec) { print $line; } $prev_rec = $cur_rec; }
With this script, you can process files of arbitrary length, because the while file isn't stuffed into a hash. It processes from standard input to standard output, thus you can give it any file you like, instead of hardcoding filenames in the script. It's a lot more efficient than opening, writing, and closing the same file over and over in a loop.

Arjen

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://289763]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others studying the Monastery: (6)
As of 2024-04-18 22:17 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found