Run awk '{print $1}' /var/log/auth.log.
awk '{print $1}' /var/log/auth.log
Compare awk and cut views of structured text.
Files and pathsawkcut
Click any instruction for the command details, the why, and the common mistake to avoid.
Run awk '{print $1}' /var/log/auth.log.
awk '{print $1}' /var/log/auth.log
Run cut -d : -f 1 /etc/group.
cut -d : -f 1 /etc/group
Run wc -l /etc/group.
wc -l /etc/group
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.
Compare awk and cut views of structured text.
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.