Given: One big text-data file (e.g. CSV format) with a 'special' first line (e.g., field names).
Wanted: An equivalent of the coreutils split -l command, but with the additional requirement that the header line from the original file appear at the beginning of each of the resulting pieces.
I am guessing some concoction of split and head will do the trick?
split, doesn't it? – Dennis Williamson Sep 11 '09 at 16:49cat a b c > reconstructed. Extraneous lines in the file means the normal reconstruction approach does not reproduce the original file. – Mark Rushakoff Sep 11 '09 at 18:23unsplit --remove-header" utility is for! But seriously,split, if it were to have a "repeat-header" option, should still default to its current behavior. You'd only use header stuff if you really wanted it. – Dennis Williamson Sep 11 '09 at 19:00--keep-first Nwould make a nice option forsplitwhich would be useful in both line and byte mode – Arkady Sep 11 '09 at 19:04