I would like to add character A
at the end of each line in a text file. How can I do this with awk?
1AAB
VBNM
JHTF
2SDA
Desired output
1AABA
VBNMA
JHTFA
2SDAA
I would like to add character A
at the end of each line in a text file. How can I do this with awk?
1AAB
VBNM
JHTF
2SDA
Desired output
1AABA
VBNMA
JHTFA
2SDAA
this may do the job for you
awk '{print $0"A"}' yourFile