Run awk '{print $1}' data/baseline.txt.
awk '{print $1}' data/baseline.txt
Click any instruction for the command details, the why, and the common mistake to avoid.
Run awk '{print $1}' data/baseline.txt.
awk '{print $1}' data/baseline.txt
Run cut -d = -f 2 data/baseline.txt.
cut -d = -f 2 data/baseline.txt
Run wc -l data/baseline.txt.
wc -l data/baseline.txt
Create a free account to sync completed lessons, XP, streaks, course status, and your next lesson across sessions.
Checking account status...
Progress sync is idle.
Progress sync stores completion IDs, scores, streaks, badges, and game settings. Terminal contents, editor snippets, lab scratch, email, and real names are never published on leaderboards or share cards.
Extract service names from a baseline report.
Run the commands in order and compare the outputs.
Junior operators build confidence by gathering evidence before changing systems.
awk '{print $N}' <file>
Print a whitespace-delimited field.
cut -d <char> -f <n>
Extract delimited fields from text.