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 s
How about
tail +2
in shell?
(edit: in newer Linux you may need tail -n +2 (thank you, GNU! :( ))
tail -n +2