in reply to Re: Is there any efficient way i can take out a specific column from hundreds of files and put it in one file?
in thread Is there any efficient way i can take out a specific column from hundreds of files and put it in one file?

Or possibly, to make the code shorter:
my $third_col = (split /\s+/, $current_line)[2];
But that does not solve the issues raised by other monks about the original post lacking far too many details for us to suggest an improvement to some code that we have not seen.
  • Comment on Re^2: Is there any efficient way i can take out a specific column from hundreds of files and put it in one file?
  • Download Code