Command
awkExplanation
awk is a powerful text processing tool for extracting and manipulating data from files.
Examples
Print first column
awk '{print $1}' file.txtPrint usernames from passwd file
awk -F: '{print $1}' /etc/passwdPrint lines where 3rd field > 100
awk '$3 > 100' data.txt