8 Levels of Using awk in Linux

Explaining with simple examples

Yang Zhou
TechToFreedom

--

A man standing in a forest
Image by 420BongHits from Wallhaven

There is one command in Linux which is too powerful to be called a command — awk. It’s literally a scripting language for text handling in Linux.

Mastering the awk is a long-term journey since it has lots of options, syntax and complex usages. Of course, you can go to its official user manual page and check them out. But its manual is a super long page, isn’t it? Few people can read it all at once.

This is why this article will make your life easier 🙂. It’s not necessary to remember all its options and syntax. All you need to know are what it can do and some common usages.

This article, based on my own experience, will introduce you common and minimum knowledge you need for using awk in 8 levels of difficulty.

0. Understanding the Structure of awk Commands

Basically, everything will be started from an awk keyword, then there is an awk program enclosed in single quotes. At the end, it’s the name of a file that this awk command will handle.

Inside the single quotes, there are two types of programs: “patterns” and “actions”. A pattern is used to search certain text on a file. An action, as its name says, is used to do some operations.

--

--