How to Open Terminal on Mac: Every Method Explained

Terminal is one of the most powerful tools built into macOS — and also one of the most overlooked. Whether you're running your first command or setting up a development environment, knowing how to open Terminal quickly is the starting point. There are several ways to get there, and the best one depends on how you work.

What Is Terminal on Mac?

Terminal is macOS's built-in command-line interface (CLI). It gives you direct access to the Unix-based shell underneath macOS — by default, zsh on macOS Catalina (10.15) and later, and bash on older versions.

Through Terminal, you can navigate your file system, run scripts, install developer tools, manage processes, and do things that no graphical app exposes. It's not just for developers — power users, IT professionals, and curious everyday Mac users all find it useful.

Method 1: Open Terminal via Spotlight Search 🔍

This is the fastest method for most users.

  1. Press Command (⌘) + Space to open Spotlight
  2. Type Terminal
  3. Press Return when Terminal appears at the top of the results

Spotlight launches apps without requiring you to know where they're stored. Since Terminal doesn't sit in the Dock by default, this saves time.

Method 2: Find Terminal in Finder

If you prefer navigating visually:

  1. Open Finder
  2. Click Go in the menu bar
  3. Select Utilities
  4. Double-click Terminal

Alternatively, use the keyboard shortcut Command + Shift + U while in Finder to jump directly to the Utilities folder. Terminal lives here alongside other system tools like Activity Monitor and Disk Utility.

Method 3: Use Launchpad

  1. Click the Launchpad icon in your Dock (the grid of dots), or pinch with four fingers on a trackpad
  2. Open the Other folder
  3. Click Terminal

macOS groups Terminal in the "Other" folder by default because it's considered a utility rather than a standard application.

Method 4: Open Terminal from the Dock

If you use Terminal regularly, pinning it to the Dock makes sense.

  1. Open Terminal using any method above
  2. Right-click the Terminal icon in the Dock while it's running
  3. Select Options → Keep in Dock

From that point on, Terminal is a single click away, always visible at the bottom of your screen.

Method 5: Right-Click a Folder in Finder

This method opens Terminal at a specific folder location — useful when you want to run commands inside a particular directory.

  1. Go to System Settings → Privacy & Security → Extensions → Added Extensions(On older macOS: System Preferences → Extensions → Finder Extensions)
  2. Enable New Terminal at Folder if available

On macOS versions that support it, you can also go to System Settings → Desktop & Dock and enable "New Terminal at Folder" from the right-click context menu.

Alternatively, drag a folder onto the Terminal icon in the Dock, and Terminal will open with that folder as the working directory — no settings change required.

Method 6: Use the Keyboard Shortcut via Automator or Third-Party Tools

macOS doesn't assign a system-wide keyboard shortcut to Terminal out of the box, but you can create one.

Via Automator:

  1. Open Automator and create a new Quick Action
  2. Set it to launch the Terminal application
  3. Assign a shortcut in System Settings → Keyboard → Keyboard Shortcuts → Services

Power users often set something like Command + Option + T for instant access.

Which Shell Is Running in Your Terminal?

When Terminal opens, it launches a shell — the program that interprets your commands.

macOS VersionDefault Shell
macOS Catalina (10.15) and laterzsh
macOS Mojave (10.14) and earlierbash

You can check which shell is active by typing echo $SHELL and pressing Return. You can also switch shells using the chsh command if your workflow requires a different environment.

Terminal vs. Other Terminal Options on Mac

Terminal isn't your only choice. Some users prefer third-party alternatives:

OptionNotable Difference
Terminal (built-in)No installation, reliable, always up to date
iTerm2Tabs, split panes, advanced search, highly customizable
WarpModern interface, AI-assisted command suggestions
VS Code integrated terminalBest for developers already using VS Code

The built-in Terminal handles the vast majority of use cases. Third-party options add workflow features that matter more the more time you spend in the command line. 💻

Variables That Affect Your Experience

A few factors shape which method or setup works best:

  • macOS version — determines default shell, available system extensions, and where some settings live (System Preferences vs. System Settings changed in macOS Ventura)
  • How often you use Terminal — occasional users may be fine with Spotlight; daily users benefit from a Dock shortcut or global keyboard shortcut
  • Type of work — scripting, development, system administration, and remote server access each pull toward different terminal setups
  • Comfort with the command line — beginners may want to stick with the built-in Terminal and learn the shell incrementally; experienced users may have specific features they depend on

Opening Terminal is simple regardless of method — what varies is how well your setup matches the way you actually work.