Concatenate multiple files but include filename as section headers

前端 未结 20 1707
粉色の甜心
粉色の甜心 2020-12-12 09:08

I would like to concatenate a number of text files into one large file in terminal. I know I can do this using the cat command. However, I would like the filename of each fi

20条回答
  •  不知归路
    2020-12-12 09:31

    I used grep for something similar:

    grep "" *.txt
    

    It does not give you a 'header', but prefixes every line with the filename.

提交回复
热议问题