Skip to content
Courses/Claude Code + Local AI/The Terminal Without Fear (CLI)

The Terminal Without Fear (CLI)

Before you build anything, let's make peace with a window that intimidates a lot of people: the terminal. It's the tool you'll use in every chapter, and in ten minutes you'll see it doesn't bite.

  • What a CLI is and why professionals prefer it for many tasks.
  • How to open the terminal on Mac, Windows, and Linux.
  • The four commands you need to navigate your folders.
  • How not to break anything.

What Is a CLI

CLI stands for Command Line Interface: a way to use your computer by typing commands instead of clicking with the mouse.

Opening the Terminal

  • Mac: press Cmd + Space, type "Terminal", and press Enter.
  • Windows: open the Start menu, type "Terminal" (or "PowerShell"), and open it.
  • Linux: usually Ctrl + Alt + T.

You'll see a window with text and a blinking cursor. That's the prompt—it's waiting for your commands.

The Four Commands for Getting Around

With these four, you can handle almost everything in the book:

Terminal
pwd          # where am I? (print working directory)
ls           # what's here? (list)
cd folder    # enter "folder" (change directory)
cd ..        # go up one folder

Try this sequence without fear (it doesn't change anything—just look):

Terminal
pwd
ls
cd ..
ls

Practice Challenge

Open the terminal, use cd to get to your Downloads folder, and type ls to see what's inside. Once you've done that, you know how to get around—you're ready for the rest of the book.

Complete Aulafy mapSee how this lesson fits without leaving your path.

Complete Aulafy map

How all courses connect

This is not a checklist. Start with the foundation, choose an outcome, and go deeper only when your project needs more control.

  1. 1Understand
  2. 2Apply or build
  3. 3Operate with confidence
01

Choose an application

Turn the foundation into a visible outcome: a website, a business improvement, media, or an interactive experience.

Continue into the technical branch when you need to maintain code, data, or infrastructure.

02

Build with code

Prepare your environment, work with coding agents, and run models while keeping control of your projects.

This branch prepares you to design and operate reliable AI systems.

03

Take systems to production

Combine retrieval, agents, evaluation, security, deployment, and model adaptation when the problem requires it.

You do not need every course: choose the component your system needs and return as it grows.

View full catalogue