Skip to main content
  1. Home
  2. Computing
  3. Apple
  4. Evergreens

The best macOS Terminal commands to try out

Add as a preferred source on Google
A person using a MacBook with an Apple Studio Display.
Apple

The Terminal is a powerful macOS tool that lets you get under your computer’s hood and tweak the way it works in all manner of ways, from simple visual changes to updating your Mac and keeping it secure. Considering what it can do, it’s a very helpful app to have at your disposal.

Yet many Mac users either don’t know how to use the Terminal or don’t even know it exists. And granted, it’s not for everyone — its extensive powers mean that things can go wrong if you don’t know what you’re doing.

Recommended Videos

But that’s where our guide comes in. We’ve put together our best tips on how to use the Terminal and get the most out of it. We’ve also included some of our favorite Terminal commands, all of which can improve your Mac experience. Let’s get started.

How to open the terminal

The Mac Terminal app running in macOS Sequoia.
Digital Trends

This is probably the most important part of this guide since many people don’t know that the Terminal even exists. To open the Terminal, all you need to do is open the Finder app, select Applications in the lefthand sidebar, and then open the Utilities folder at the bottom and find the Terminal app. Alternatively, you can open the Spotlight search box by pressing Command + Space, typing “Terminal,” then selecting the top result or pressing Return.

Terminal is an interface through which you issue text commands to your Mac. Once you type a command, Terminal will respond in one of three ways: recognize and accept those commands, not recognize them, or prompt you for further input. It’s that simple.

The commands below will help familiarize you with how the Terminal works and what you can use it for in your everyday life.

Prevent your Mac from sleeping

The Mac Terminal app running in macOS Sequoia.
Digital Trends

This command accomplishes one very simple problem: keeping your computer awake for a period of time. Just open the Terminal and type in “caffeinate,” and your Mac won’t go to sleep until you close that Terminal window. You can also set a timer by typing “caffeinate -u -t” and then how long, in seconds, you want to prevent your Mac from sleeping.

For example, typing “caffeine -u -t 120” would keep your Mac awake for 120 seconds (or two minutes).

Change screenshot formats

The Mac Terminal app running in macOS Sequoia.
Digital Trends

The macOS operating system makes it really easy to capture screenshots of your whole screen (Command + Shift + 3) or just part of your screen (Command + Shift + 4). However, it always saves those screenshots to your desktop as PNG files. That’s not always a bad thing, but sometimes you might want to save a screenshot as a different file type, such as JPG.

Fortunately, there’s a Terminal command that can solve that problem: just type: defaults write com.apple.screencapture type JPG

This command allows you to change the filetype your screenshots will be saved as — in this example, we’ve used JPG. You can change it back at any time by typing the above command and replacing JPG with PNG, making the full command: defaults write com.apple.screencapture type PNG

Show detailed file paths

The Mac Terminal app running in macOS Sequoia.
Digital Trends

By default, when you open a folder in macOS, the top of the window will show the name of the folder but not where it is. For instance, open up your Pictures folder, and the top of the finder window will just say Pictures, not users/yourname/pictures. This can be a little irritating, especially when you’re moving folders around or digging through folders trying to find a particular file.

To show detailed file paths, open Terminal and type “defaults write com.apple.finder _FXShowPosixPathInTitle -bool YES” — then, press Return.

This terminal command shows the full path of a folder in the Finder window of that folder. If nothing else, it’s a helpful way to get an idea of how your files are arranged and keep your Mac nice and organized. Undoing this change is just as easy as typing out the above command again and replacing YES with NO.

Show hidden files

The Mac Terminal app running in macOS Sequoia.
Digital Trends

Sometimes, you just need to dig into the guts of macOS to fix some problem or another, and that will require accessing files that your Mac would prefer you left alone. By default, most sensitive files and folders are hidden from view, including from Spotlight and Siri searches. With the right terminal command, you can peel back the curtain and peer into the darkest reaches of your Mac.

To do so, type the following command into Terminal: defaults write com.apple.finder AppleShowAllFiles TRUE

The above command reveals all of your hidden system files, so make sure you know what you’re doing before you start messing around with them. If you’d prefer those files go back to being hidden, just re-enter the above command but swap TRUE with FALSE.

Update macOS

The Mac Terminal app running in macOS Sequoia.
Digital Trends

If, for one reason or another, you can’t update your Mac using the System Settings app, you can use the Terminal. In a new Terminal window, type the following: softwareupdate -i -a. This will download and install any updates to your operating system that are available. Note that this does not update individual apps.

If you instead want to see what macOS updates are available before installing them, type “softwareupdate -l” (that’s a lowercase L, not an uppercase i). This will display any macOS updates with an asterisk to the left of each update’s name. To install an update, type “softwareupdate -i [name]” — [name] is replaced by the exact name of the update, as listed in Terminal. If there are spaces in the update name, wrap the entire phrase in single quotation marks. For example, you could type: ‘softwareupdate -i macOS Sequoia 15.0.1’ — the update will begin when you press Return.

Change Dock spacing

The Mac Terminal app running in macOS Sequoia.
Digital Trends

You can better organize your Mac’s Dock by adding spacers in between your apps. To do this, open Terminal and type the following:

defaults write com.apple.dock persistent-apps -array-add ‘{“tile-type”=”spacer-tile”;}’; killall Dock

Once you press Return, your Dock will restart, and a spacer will be added to it when it reappears. Type the command again to add another spacer (do this as many times as you like). Feel free to move the spacers around the Dock to group app icons together. To remove a spacer from your Dock, right-click it and select Remove from Dock.

Alex Blake
Alex Blake has been working with Digital Trends since 2019, where he spends most of his time writing about Mac computers…
A simple coding mistake is exposing API keys across thousands of websites
Security gaps that are easier to miss than you think
Computer, Electronics, Laptop

After analyzing 10 million webpages, researchers have found thousands of websites accidentally exposing sensitive API credentials, including keys linked to major services like Amazon Web Services, Stripe, and OpenAI.

This is a serious issue because APIs act as the backbone of the apps we use today. They allow websites to connect to services like payments, cloud storage, and AI tools, but they rely on digital keys to stay secure. Once exposed, API keys can allow anyone to interact with those services with malicious intent.

Read more
AMD’s latest Ryzen 9 9950X3D2 pushes X3D to the limit
Dual 3D V-Cache, higher power, and a focus on enthusiast performance
AMD Ryzen 9 9950X3D2 FEatured

AMD has unveiled what might be its most extreme desktop CPU yet, the Ryzen 9 9950X3D2. And it’s going all-in on one thing: cache.

https://twitter.com/jackhuynh/status/2037159705395491033?s=20

Read more
Next-gen AI breakthrough promises chatbots that can read the room better
Researchers are teaching AI chatbots to read between the lines
Generative AI

Have you ever asked a chatbot something and felt like it completely missed your point? You say something with a bit of nuance, and the AI misses the subtlety entirely. That is exactly the problem researchers are trying to solve.

Even though the emotional connection with AI can feel deeper than human conversation for many users, most AI systems today still treat a sentence as a single block of sentiment. If you mix praise and criticism, the nuance often gets lost.

Read more