macOS Apps & tools

Terminal basics for macOS users

Comfortable with Terminal in 15 minutes — enough to follow admin guides without fear.

14 min read Beginner Updated 9 Jun 2026

Step-by-step guide

Work through each section in order. Stop when your issue is resolved — you do not need every step for every situation.

Warning

Create a Time Machine backup before major updates, disk operations, or security changes on macOS.

What you will achieve

Comfortable with Terminal in 15 minutes — enough to follow admin guides without fear.

1) Navigate filesystem safely

pwd
ls -la
cd ~/Documents

2) Learn basic file operations

mkdir demo-folder
touch demo-folder/test.txt
cp demo-folder/test.txt demo-folder/test-copy.txt

3) Use sudo deliberately

Only use sudo when a command explicitly requires admin rights and you trust the command.

Related guides

cli macos terminal