how to display the message on 5th column of first line
Answers
Answered by
0
How to do it...
- To print the fifth column, use the following command: $ awk '{ print $5 }' filename.
- We can also print multiple columns and insert our custom string in between columns. For example, to print the permission and filename of each file in the current directory, use the following set of commands:
Similar questions