How to add a character at the end of each line with awk?

后端 未结 1 1048
你的背包
你的背包 2020-12-30 20:47

I would like to add character A at the end of each line in a text file. How can I do this with awk?

1AA         


        
相关标签:
1条回答
  • 2020-12-30 21:23

    this may do the job for you

    awk '{print $0"A"}' yourFile
    
    0 讨论(0)
提交回复
热议问题