I would like to add character A at the end of each line in a text file. How can I do this with awk?
A
1AA
this may do the job for you
awk '{print $0"A"}' yourFile