Mission 310

Terminal foundations bridge

Checkpoint command lookup, path resolution, output capture, and history.

Terminal basics
8 minutes Capstone Lesson 310 of 360
typerealpathteehistory
Lesson 310 of 360 0/360 lessons 0/17 missions Terminal basics · 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.

Identify nano

Run type nano.

type nano
Resolve the deploy script

Run realpath scripts/deploy.sh.

realpath scripts/deploy.sh
Capture the checkpoint marker

Run printf foundations-ready | tee lab/foundations-ready.txt.

printf foundations-ready | tee lab/foundations-ready.txt
Review the checkpoint

Run history.

history
Lesson support

What to notice while you play.

Objective

Build repeatable confidence with combining the first terminal workflow habits.

Hint

Start with type nano, inspect the result, then continue in order.

Why it matters

Combining the first terminal workflow habits helps operators explain what they know before they change anything.

Common mistakes
  • Skipping the output that proves combining the first terminal workflow habits.
  • Changing several things before recording a baseline.
Reference

Commands in this lesson.

type <command>

Explain whether a command is built in or found on the simulated PATH.

tee <file>

Write piped text to a lab file and keep it on screen.

realpath <path>

Resolve a path to its canonical simulated location.

history

Show recent commands.