Run printf status=ready | tee lab/status.env.
printf status=ready | tee lab/status.env
Create machine-readable status lines and verify their shape.
Shell scriptingprintfteegrep
Click any instruction for the command details, the why, and the common mistake to avoid.
Run printf status=ready | tee lab/status.env.
printf status=ready | tee lab/status.env
Run grep status lab/status.env.
grep status lab/status.env
Run cat lab/status.env.
cat lab/status.env
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.
Build repeatable confidence with producing predictable script-style status output.
Start with printf status=ready | tee lab/status.env, inspect the result, then continue in order.
Producing predictable script-style status output helps operators explain what they know before they change anything.
printf <text>
Print formatted training text.
grep [-i] <text> <file>
Find literal text inside a file.
tee <file>
Write piped text to a lab file and keep it on screen.