Carousel · 8 slides
What a terminal actually is, in 4 minutes
Not a hacker prop. The terminal, the shell, and the first four commands to type. As posted on TikTok, Instagram, and LinkedIn — the full story, one slide per card.
The black window is the plainest interface your Mac has.
Not a hacker prop. Four minutes from now you'll have typed your first four commands into it.
Finder and the terminal show the same computer.
Finder shows folders as icons you drag. The terminal shows the same folders as text you ask about. ~/Desktop in the terminal IS the Desktop you've been dragging files onto for years.
Terminal vs shell.
The terminal is one mysterious program with hidden powers.
The terminal is just the window. The shell — zsh, at /bin/zsh on every modern Mac — is the program that reads what you type and answers.
Three questions to your Mac.
$ pwd
/Users/you
$ ls
Desktop Documents Downloads
$ echo $SHELL
/bin/zshWhere am I, what's here, who's answering. Reading terminal sessions is reading a chat transcript.
Silence means success.
$ mkdir studio-demo
$ cd studio-demo
$ touch index.html style.css notes.txt
$ ls
index.html
notes.txt
style.cssThree commands answered with silence — the shell's thumbs-up. Only ls had something to report. Check Finder: the files are there.
Claude lives here because every action is text.
Text is precise: mkdir studio-demo means exactly one thing on every Mac. Text is repeatable and composable. Claude reads and writes text — so this interface lets it drive your whole computer.
The pocket reference.
- pwd — print working directory: where am I?
- ls — list: what's here?
- cd <folder> — go there (cd .. goes up one)
- mkdir <name> / touch <name> — make folders and files
- open . — open this folder in Finder, the bridge between faces
One idea from one lesson.
Track 1 (23 lessons) is free.