Awk is used to get a particular pattern in a ouput
you can use this to print a particular pattern
To print the third column in the output using space as the delimiter
awk -F " " '{print $3}'
If you want to print the particular row and a particular column you can use like this
awk -F " " 'NA==3{print $2}'
No comments:
Post a Comment