This is a free "course" on Awk. It originally started out as a talk at Linux Fest Northwest that was repeated due to popularity (apologies still to those who weren't able to attend because the room was full), but has moved to a video series. This Github repo contains the "challenges" portion of the course, where you write Awk code to answer a question.
Ready to learn Awk? This is the place! An hour or two from now, you'll be able to read and write moderately complex Awk scripts!
- Watch video: Awk: Hack the Planet['s text]! - Part 1
- Attempt the challenges*: See "The Challenges" section on README.md in Github
- Watch solution video: Awk: Hack the Planet['s text]! - Part 2
*Note: If you click on the *.awk files in the repo, you'll be seeing my solution! To avoid spoilers, make sure to follow "The Challenges" section below. It will describe the scenario and then provide the questions.
Awk has been around almost forever, yet so many today are unaware of it's power and elegance. It is an amazingly powerful tool that is its own Turing complete programming language. Awk is so powerful that it can be used to create entire services (that process text). But, there's a lot of ignorance out there regarding Awk, and ignorance breeds fear. Come take the Awk red pill like that guy in the documentary "The Matrix" did. Awk can be a ton of fun! Let's make text processing fun again!
We start out by discussing what Awk is, and briefly reviewing the history of Awk. We'll then go over some examples of cool things we can do to whet our appetites. Then we'll go over the syntax and rules of the Awk language. Then we'll see real examples of Awk in action by doing some amazing text processing using only Awk.
Throughout the process, there will be lots of examples that you can run and test yourself (if you want to). Some text files will be provided so you can quickly and easily reproduce the results locally in real time. Source code is available on github: https://github.com/FreedomBen/awk-hack-the-planet .
By the end of this presentation, you will be ready to start using Awk to solve real world problems. You will be comfortable reading and understanding Awk programs and will be ready to slice and dice like a classic *nix hacker.
When you are ready to take on the challenges, you can find the source at: https://github.com/FreedomBen/awk-hack-the-planet
You can also see my solutions (with in depth explanations) in Part 2: https://youtu.be/4UGLsRYDfo8
Here are links to the videos:
- Part 1 (Presentation) (2023 Update) - This is the presentation or lecture explaining Awk syntax and functions
- Part 2 (Exercises) - This includes me explaining all of the answers to the challenges in the repo. Contains spoilers for the challenges!
And here are links to the slides:
Slides (2023 update) and source code to go along with Ben Porter's "Awk: Hack the planet['s text]!" video. (This started out as a talk at Linux Fest Northwest in 2019 and 2020)
Slides from previous (2020) version
- Part 1 (Presentation) - This is the presentation or lecture explaining Awk syntax and functions
- Part 2 (Exercises) - This includes me explaining all of the answers to the challenges in the repo
- Email: [email protected]
- Keybase.io : https://keybase.io/freedomben
- Twitter: @Freedom_Ben
The boss has given us a tsv file full of payroll data,
and she would like us to run some analysis on it. We recently learned about awk
and
its amazing processing power, and have decided this is an awesome chance to use our new skillz!
You should primarily use awk, but you can (and should) combine with other tools (like sort, uniq) when it makes sense. Don’t use grep or sed tho since awk can handle the same scenarios (and you are trying to learn awk after all) :-)
To begin you can either clone this repo (recommended):
git clone https://github.com/FreedomBen/awk-hack-the-planet.git
or directly download the payroll.tsv file:
wget 'https://raw.githubusercontent.com/FreedomBen/awk-hack-the-planet/master/payroll.tsv'
The payroll file is [payroll.tsv](https://github.com/FreedomBen/awk-hack-the-planet/blob/master/payroll.tsv)
. If you would like to randomize it, you can generate a new one with the provided ruby script:
# This script will write to a file "payroll.rsv" in the working directory
./generate-payroll.rb
There are many different solutions. The ones presented are just mine. Many of them could be
optimized and refactored to be more elegant, but my goal was simplicity, readability, and ease
of learning. To run my solutions (and check my output against yours), use
awk -f <file> payroll.tsv
(but substitute the number for the one you are trying
to run). For example, to run my solution for problem 1:
awk -f 01.awk payroll.tsv
Some solutions are bash scripts (you can tell by the file extension .sh), in which case just run them like normal:
./09-awk.sh
Best of luck!
- How much money per hour does the janitor make?
- What is the name of the CEO? Format like "LastName, FirstName"?
- Which employees were hired on April 16, 1993? (Print the list)
- Which employee works in the Springfield office?
- How many mechanical engineers work here?
- How many people from the Portwood family work here?
- Are there any employees with identical first & last names? (IOW, the first name is the same as the last name. e.g. Linus Torvalds is not identical, Johnson Johnson is identical)
- Print each column header, along with the column number. E.g. The LastName column is the second column, so print "2 - LastName"
- How much money per hour does the Seattle office cost to run? (IOW, how much total per hour does it cost to pay all employees who work out of the Seattle office)
- How many engineers (of any type) work here?
- Who is the highest paid employee?
- Who worked the most hours this week?
- Anonymize the data by removing the first two columns. Print all remaining columns
- Our client is complaining about the anonymized data from the previous question. They say is claiming it is too hard to read. They would like you to add line numbers to the beginning of each line in the output.
- How many different office locations does the company have?
- What is the average (mean) wage of all employees? What about the median (extra credit)?
- Are there any duplicate entries? (Same names appearing on payroll more than once)
- Who was the first employee hired?
My solutions are in the *.awk
files in this repository. Feel free to use them for hints. You can run them with:
awk -f <file>.awk payroll.tsv
They are also detailed in the Slides at the end of the deck.
Good news everyone! The boss just sent me another
message, and she says that if you get these questions solved then you'll get a huge raise!
10x higher than what she's paying you right now. Only, the computer is broken so you have to
use awk to calculate it. This is an opportunity to explore a cool feature of the awk CLI!
We can pre-set variables and pass them in. There are other cool flags too. Check out awk --help
.
But note that only the POSIX options are portable, so avoid the GNU options if you need compatibility.
To calculate your new salary, update the CURRENT_SALARY
variable below to what she is paying you
now. Here's mine:
awk -v CURRENT_SALARY=0 'BEGIN { print "Your new salary is: " 10 * CURRENT_SALARY }'