Run cat README.txt.
cat README.txt
Open text, search logs, and inspect output without editing files.
Text and logscatheadtailgrepstat
Click any instruction for the command details, the why, and the common mistake to avoid.
Run cat README.txt.
cat README.txt
Run tail -n 3 /var/log/auth.log.
tail -n 3 /var/log/auth.log
Run grep denied /var/log/auth.log.
grep denied /var/log/auth.log
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.
Read file contents without changing them.
Use tail for logs and cat for small files.
Most troubleshooting starts by reading evidence.
cat <file>
Print text file contents.
head|tail [-n N] <file>
Read the beginning or end of a file.
grep [-i] <text> <file>
Find literal text inside a file.
stat <path>
Show lab file details.