Welcome to the Terminal
What You’ll Learn
In this module, you’ll get comfortable with the terminal — the text-based interface that every AI coding tool uses behind the scenes.
By the end of this module, you’ll be able to:
- Understand what a terminal is and why it matters for vibe coding
- Run basic commands like
pwd,whoami,echo, andclear - Navigate the filesystem using
cdandls - Read file paths and understand the difference between absolute and relative paths
Try It Now
There’s a terminal on this page. Go ahead and type pwd to see where you are, then press Enter.
That’s the current working directory — the folder you’re “standing in” right now. Everything you do in the terminal happens relative to this location.
Tip: Try Desktop View!
See the Desktop View button in the top bar? Click it to open a visual macOS desktop alongside the terminal. As you run commands, you'll see files and folders update in real time — in both the terminal and the desktop. It's a great way to connect what you type with what's actually happening.
Ready? Let’s start with the basics.