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.
Ready? Let’s start with the basics.