This question already has an answer here:
- Concatenate table without header 4 answers
The following script works to cat all files in a directory without header but prints the file name. How can I cat without file name.
tail -n +2 * >> Compile
This question already has an answer here:
The following script works to cat all files in a directory without header but prints the file name. How can I cat without file name.
|
||||
marked as duplicate by don_crissti, Kusalananda, sam, mdpc, heemayl 7 hours agoThis question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question. |
||||
|
Alternative method:
|
||||
|
sed can be used to miss out lines:
this is assuming the folder only contains test files though; I just checked here and it didn't like directories at all, while tail coped. You could use find then though if needed:
Added the |
|||||||||
|