Self-tutoring about Linux: the tutor mentions awk. awk is a utility for getting values from tabulated data. It works line by line. For instance, awk ‘{print $2}’ input.txt will print the second field in each record of input.txt. Source: geeksforgeeks.org