in reply to Is there any efficient way i can take out a specific column from hundreds of files and put it in one file?
Are you looking for split?
Perhaps something like the following:
my @columns = split /\s+/, $current_line;
-Thomas
"Excuse me for butting in, but I'm interrupt-driven..."
|
---|
Replies are listed 'Best First'. | |
---|---|
Re^2: Is there any efficient way i can take out a specific column from hundreds of files and put it in one file?
by Laurent_R (Canon) on Sep 28, 2014 at 08:42 UTC |