What Does awk ‘{ print $2; }’ Mean?
The awk is a popular command used to manipulate the text or command output. The print is a subcommand provided by the awk in order to print data to the standard output. The print subcommand can get different parameters where $2 is one of them. In this tutorial, we examine what awk ‘{ print $2}’ … Read more