What Is a Terminal?
The Text Interface to Your Computer
A terminal (also called a shell, command line, or console) is a text-based way to interact with your computer. Instead of clicking icons and menus, you type commands and press Enter.
That might sound old-fashioned, but here’s the thing: every AI coding tool you use runs terminal commands.
When you use Claude Code, Cursor, Windsurf, or any AI coding assistant, they don’t click buttons on your behalf. They type commands into a terminal — your terminal, on your machine.
When your AI tool says it ran
find . -name '*.js' -type f, do you know what that does? It searched every folder for JavaScript files. By the end of this course, commands like this will be second nature.
What Does a Terminal Look Like?
Look at the terminal on this page. You’ll see something like:
user@bluebox:~$
This is the prompt. It tells you:
- user — who you’re logged in as
- bluebox — the name of the computer
- ~ — your current location (
~means your home directory) - $ — means you’re a regular user (not an admin)
After the $, that’s where you type.
Why Not Just Use a GUI?
Graphical interfaces (GUIs) are great for many things. But the terminal is better for:
- Automation — run the same task a thousand times
- Precision — do exactly what you mean, nothing more
- Speed — experienced users are much faster in the terminal
- Remote access — manage servers that have no screen
- AI tools — this is how they interact with your system
Open Your Real Terminal
You can practice in the browser terminal on this page, but you’ll eventually want the real thing on your machine. Here’s how to open it:
Mac (most vibe coders are here):
- Press Cmd + Space to open Spotlight, type Terminal, and press Enter
- Or open Finder → Applications → Utilities → Terminal
- Pro tip: once it’s open, right-click the dock icon and choose Options → Keep in Dock
Linux:
- Press Ctrl + Alt + T on most distros (Ubuntu, Fedora, Pop!_OS)
- Or search for “Terminal” in your app launcher
Every command you learn in this course works the same in the browser terminal here and on your real machine.
The Key Takeaway
The terminal is your window into what AI tools are actually doing on your computer. Understanding it means you can:
- Read what your AI assistant is doing
- Verify that its actions make sense
- Catch mistakes before they cause problems
- Learn by watching the commands it chooses
Type whoami in the terminal to see who you are on this system.