Module 1

What a Terminal Actually Is

Bonus 1. The thing you have been avoiding. It takes about fifteen minutes to stop being scary forever, and everything else in this session sits on top of it.

1 · Claude Code for Filmmakers1 / 24

You have already used one

In the main course you dragged a file into Claude and it built you a studio.

It did that by using a terminal. You watched the output scroll past. You have already been in the room, you just were not the one talking.

1 · Claude Code for Filmmakers2 / 24

What it is, in one sentence

A terminal is a window where you type the name of a thing you want done, instead of hunting for a button that does it.

That is the whole idea. Everything else is vocabulary.

1 · Claude Code for Filmmakers3 / 24

Why it looks like 1983

Because it works, and because it is the one interface that has never broken compatibility.

A button can only do what someone drew a button for. A typed instruction can be combined, repeated, scheduled, and given to a machine to run at 3am. That is not nostalgia, it is the reason the unattended queues in Module 4 are possible at all.

1 · Claude Code for Filmmakers4 / 24

Open it, right now

Mac: press Cmd then Space, type terminal, press Return.

Windows: press Win, type terminal, press Return.

A window appears with some text and a blinking cursor. Nothing has happened. It is waiting.

Note

Nothing you type here does anything until you press Return. You can type nonsense and delete it. The window is not armed.

1 · Claude Code for Filmmakers5 / 24

The prompt is just a label

That text before the cursor is the terminal telling you two things: who you are and where you are standing.

sean@macbook  ~/Documents/my-film  %

Your name, your machine, the folder you are currently inside, and then a symbol that means "go ahead."

It is a status bar, not a command. You never type it.

1 · Claude Code for Filmmakers6 / 24

Where you are standing

1 · Claude Code for Filmmakers7 / 24

The one concept that makes the rest easy

You are always inside a folder. Everything you type happens to that folder unless you say otherwise.

This is exactly like the Finder or File Explorer, except instead of seeing the folder, you are standing in it.

1 · Claude Code for Filmmakers8 / 24

Three commands, and that is genuinely most of it

Type thisIt means
pwdwhere am I standing right now
lswhat is in here
cd filmswalk into the folder called films

Try all three. Then cd .. which means walk back out one level.

Tip

Type cd (with the space) then drag a folder from your Finder window into the terminal. It fills in the path for you. Nobody types long paths by hand, including people who have done this for twenty years.

1 · Claude Code for Filmmakers9 / 24

The ~ symbol

~ means your home folder. ~/Documents/my-film means Documents, then my-film, inside your home.

That is all it is. A shortcut so nobody has to write /Users/yourname/ a hundred times a day.

1 · Claude Code for Filmmakers10 / 24

The fears, addressed

1 · Claude Code for Filmmakers11 / 24

"I will break something"

You will not, with what you have been taught here. pwd, ls and cd only look. None of them can change a single file.

The commands that change things are a different, small set, and you will always know when you are using one because you will have typed the word yourself.

Watch out

The genuine danger is a command someone else gave you that you do not understand. That is a real risk and it has a real answer, on the next slide.

1 · Claude Code for Filmmakers12 / 24

The rule for a command you did not write

Paste it into Claude before you paste it into a terminal.

"Explain exactly what this command does, in plain English, line by line. Tell me specifically whether it deletes, overwrites or sends anything anywhere, and what folder it will affect."

This is not a beginner's crutch. It is what a careful professional does, because the cost of being wrong is asymmetric and the check takes four seconds.

1 · Claude Code for Filmmakers13 / 24

"It will do something I cannot undo"

Some things are genuinely not undoable, and your studio already guards the worst of them. From the main course you have a delete guard and a secret guard, and you watched one refuse a command.

Two habits close the rest of the gap:

  • Work in a folder that is in version history, so yesterday is always recoverable
  • Anything irreversible gets a copy made first
1 · Claude Code for Filmmakers14 / 24

The keys that get you out

KeyWhat it does
Ctrl Cstop whatever is running, right now
Ctrl Lclear the screen, changes nothing
Upbring back the last thing you typed
Tabfinish the name you started typing

Ctrl C is the one to remember. If anything ever runs longer than you expected, that stops it. It is the escape hatch and it always works.

1 · Claude Code for Filmmakers15 / 24

Tab is the one that feels like magic

Start typing a folder name, press Tab, and the terminal finishes it.

It also proves the thing exists. If Tab does not complete it, you have the name wrong, and you found out before you pressed Return rather than after.

1 · Claude Code for Filmmakers16 / 24

Where Claude lives in this

1 · Claude Code for Filmmakers17 / 24

You are not learning this to type commands

You are learning it so you understand what you are looking at while it types them.

The tool runs the commands. You need to be able to read the room, not do the work.

1 · Claude Code for Filmmakers18 / 24

What you now understand when you watch it work

When it says it is running something in ~/Documents/my-film, you know:

  • Which folder it is standing in, so you know what it can reach
  • That ls is it looking, not changing
  • That the scrolling text is output, not errors, unless it says otherwise
  • That Ctrl C stops it at any moment

That is the whole difference between supervising and hoping.

1 · Claude Code for Filmmakers19 / 24

Starting Claude from a folder

This is the one thing worth being able to do yourself:

cd ~/Documents/my-film
claude

Walk into the project, then start it there. That is how it knows which folder is its world, which was the very first idea in Module 0 of the main course.

The trap

Starting it in your home folder instead of your project is the most common beginner mistake. It then has your entire computer as its world, which is both slower and less safe.

1 · Claude Code for Filmmakers20 / 24

Do it now

1 · Claude Code for Filmmakers21 / 24

The exercise

Ten minutes. Nothing here can change a file.

  1. Open the terminal.
  2. pwd. Read where you are.
  3. ls. Read what is there.
  4. Type cd and drag one of your project folders in. Press Return.
  5. pwd again. You moved.
  6. ls. That is your project, seen from the inside.
  7. Press Up a few times. Your history is right there.
  8. Type cla then press Tab. Watch it finish.
  9. claude. You are in, standing in the right folder.
  10. Ask it: "which folder are you working in, and what can you see?"
1 · Claude Code for Filmmakers22 / 24

What you should have now

  • A terminal you can open without a feeling in your chest
  • Three commands that only look, and the knowledge that they only look
  • Ctrl C, Tab and Up, which is most of the ergonomics
  • The habit of asking what a command does before running it
  • The ability to start Claude standing in the right folder, deliberately

The window is not for programmers. It is a room where you say what you want.

1 · Claude Code for Filmmakers23 / 24

Next: Bonus 2

The File That Tells It Who You Are. One file in your project that it reads every single time, and why it is the highest-leverage thing you will ever write.

Verified against Claude Code 2.1.220 · 2026-07-30.

1 · Claude Code for Filmmakers24 / 24
Keys space next  ·  back
Or click the arrows, the sides of the frame, or the bar along the bottom
Home / End first / last
S presenter notes
A scroll-all view, then ⌘P to make a PDF
F fullscreen  ·  ? this help
NextThe File That Tells It Who You AreContinue ›