How to append contents of multiple files into one file

前端 未结 11 2126
既然无缘
既然无缘 2020-12-22 15:49

I want to copy the contents of five files to one file as is. I tried doing it using cp for each file. But that overwrites the contents copied from the previous file. I also

11条回答
  •  轻奢々
    轻奢々 (楼主)
    2020-12-22 16:21

    if your files contain headers and you want remove them in the output file, you can use:

    for f in `ls *.txt`; do sed '2,$!d' $f >> 0.out; done
    

提交回复
热议问题