Mission 118

Text pipeline checkpoint

Combine search, field extraction, transform, and counting.

Text and logs
8 minutes Capstone Lesson 118 of 360
grepawktrwc
Lesson 118 of 360 0/360 lessons 0/17 missions Text and logs · 8 minutes
0%
Continue View profile
Ops lab terminal Training lab
New learnerrank 0XP 0%complete
learner@clairos:/home/learner $ Unix ops lab: type a command, press Enter
Instructions 8 minutes

Click any instruction for the command details, the why, and the common mistake to avoid.

Extract denied process fields

Run grep denied /var/log/auth.log | awk '{print $5}'.

grep denied /var/log/auth.log | awk '{print $5}'
Normalize incident text

Run printf incident | tr a-z A-Z.

printf incident | tr a-z A-Z
Count denied lines

Run grep denied /var/log/auth.log | wc -l.

grep denied /var/log/auth.log | wc -l
Lesson support

What to notice while you play.

Objective

Combine search, field extraction, transform, and counting.

Hint

Run the commands in order and compare the outputs.

Why it matters

Junior operators build confidence by gathering evidence before changing systems.

Common mistakes
  • Skipping the inspection step.
  • Assuming one command tells the whole story.
Reference

Commands in this lesson.

grep [-i] <text> <file>

Find literal text inside a file.

awk '{print $N}' <file>

Print a whitespace-delimited field.

tr a-z A-Z

Transform piped text case.

wc [-l] <file>

Count lines, words, and characters.