How can I add a string to the beginning of each file in a folder in bash?

前端 未结 9 890
天命终不由人
天命终不由人 2021-01-01 17:04

I want to be able to prepend a string to the beginning of each text file in a folder. How can I do this using bash on Linux?

9条回答
  •  抹茶落季
    2021-01-01 17:19

    This is the easiest I have worked out.

    sed -i '1s/^/Text to add then new file\n/' /file/to/change

提交回复
热议问题