Shell / Commands

awk

English

Overview

A command handy for processing and aggregating text column by column.

Details

A programming language and command that processes text field by field, commonly used for aggregation and report generation. Fields are referenced by number, like $1 or $2, so awk '{print $1}' is enough to pull out just the first column from space-separated text.

More Linux terms