Beefy Boxes and Bandwidth Generously Provided by pair Networks
more useful options
 
PerlMonks  

CColin's scratchpad

by CColin (Scribe)
on Feb 24, 2011 at 20:30 UTC ( [id://890049]=scratchpad: print w/replies, xml ) Need Help??

#!/usr/bin/perl use warnings; use strict; my $linecount = 0; my @files = </path_to_nine_files_prefixed_by_rawfile/rawfile*>; open (MASTER, "/path_to_starting_file/rawfile"); while (<MASTER>) { #process the first line of master and then get the first #line of the +other files, since files are all same length... $_ =~ s/^\s+|\s+$//g; print "$_,"; #process the first lines of each of the other files and #append them foreach my $file (@files) { open (FILE, $file); my @file_lines = <FILE>; my $required_line = $file_lines[$linecount]; print "$required_line,"; next; } #end foreach $file print "\n"; $linecount++; } #end while
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others chilling in the Monastery: (3)
As of 2024-04-24 23:10 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found