I do have a whole bunch of files in a directory and from every file I want to remove the first line (including carriage return). I can read the whole file into an array of strings and write all but the first element to a new file, but that looks a bit cumbersome to me are there better ways? Oh the prefered language is Perl.
feedback
|
|
Try this one liner
I've used it before, should be all you need. | |||
|
feedback
|
Sometimes
| |||
|
feedback
|
This is similar to stocherilac's answer. But, in any case (and in all the others answer given!) you are always reading the full file. No way of avoiding that, AFAIK. | |||||||
feedback
|
PS: Would you please accept some answers to your questions? | |||||||||
feedback
|
|
As pointed out by Schwern, the following does not perform an early exit as I had originally thought it would:
Seems like one cannot avoid processing the whole file after all. | |||||||
feedback
|