Terminal is an app on your Mac that lets you control your computer by typing text commands instead of clicking around in windows and menus.
That's it. That's what it is.
You're typing instructions directly to your computer's operating system. No buttons, no drag-and-drop, just text.
Where to Find It
Terminal is already on your Mac. You don't need to download anything.
Open Spotlight (Cmd + Space), type "Terminal," and hit Enter. You'll see a window with a blinking cursor waiting for you to type something.
What It Looks Like
When you open Terminal, you'll see something like this:
yourname@Your-MacBook ~ %
That's the prompt. It's telling you:
- Who's logged in (yourname)
- What computer you're on (Your-MacBook)
- Where you are in your files (~, which means your home folder)
- That it's ready for a command (%)
Why Would Anyone Use This?
Fair question. Clicking icons is easier. But Terminal lets you do things that are impossible or tedious with regular apps:
It's faster for repetitive tasks. Renaming 500 files with a click-and-type approach takes an hour. One Terminal command does it in two seconds.
It gives you more control. Some settings on your Mac are hidden from the normal interface. Terminal lets you access them.
It's required for certain tools. If you ever want to use programming languages, version control (Git), or developer tools, you'll need Terminal.
It works when other things don't. When your Mac is acting strange and apps won't open, Terminal often still works.
A Simple Example
Here's what using Terminal feels like.
Say you want to see what files are in your Documents folder. With Finder, you'd click through folders until you get there.
In Terminal, you'd type:
ls ~/Documents
Hit Enter. You instantly see a list of every file and folder in Documents.
That's it. One line.
ls means "list." ~/Documents is the path to your Documents folder. The ~ is shorthand for your home folder.
Is It Dangerous?
Terminal itself isn't dangerous. It's just a way to give instructions.
But it will do exactly what you tell it to do, including deleting files permanently or changing system settings. There's no "Are you sure?" popup for most commands.
The rule: don't copy and paste commands from the internet unless you understand what they do. If someone tells you to run something and you don't know what it means, look it up first.
For normal use - navigating folders, moving files, running common tools - you're not going to break anything.
The Vocabulary
You'll see a few terms thrown around:
Terminal - The app itself. The window you type in.
Shell - The program that interprets your commands. On modern Macs, this is called Zsh (pronounced "zee-shell"). Older Macs used Bash. They're similar.
Command line - A generic term for this style of text-based interface. Terminal is a command line interface.
CLI - Short for Command Line Interface. Same thing.
These terms get used interchangeably, which is confusing. Don't worry about it. They all basically mean "that text window where you type commands."
What Can You Actually Do?
Here are real things people use Terminal for:
- Navigate your files and folders
- Create, move, copy, rename, and delete files
- Search for files by name or content
- See what's taking up space on your hard drive
- Show hidden files that Finder doesn't display
- Change system settings that aren't in System Preferences
- Install and manage software (using tools like Homebrew)
- Connect to remote servers
- Automate repetitive tasks with scripts
- Run programming languages and developer tools
You don't need to learn all of this at once. Most people start with basic file navigation and add skills as they need them.
The Bottom Line
Terminal is a text-based way to control your Mac. It's already installed. It's not magic, and it's not dangerous if you're thoughtful about what you type.
It feels intimidating at first because it's unfamiliar, not because it's complicated.
Ready to Learn?
If this made sense and you want to actually learn how to use Terminal, there's a free 9-module course that starts from zero. No experience required. Check out Mac Terminal for Humans.