How can I add a new column to a file with awk codes?
original.file
F1 F2 F3 ..F10
add F11 to original.file
F1 F2 F3 ..F10 F11
awk '{print $0, "F11"}' original.file
2.1m questions
2.1m answers
60 comments
57.0k users