MacOS terminal navigation

From CommunityData
Revision as of 20:58, 16 January 2020 by Ddailey (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Utilities-terminal.png

Practice navigating from the terminal[edit]

The filesystem on your computer is like a tree made up of folders (also called "directories") and files. The filesystem has a root directory called /, and everything on your computer lives in subdirectories of this root directory.

We often navigate the filesystem graphically by clicking on graphical folders. We can do the exact same navigation from the terminal.

There are three commands that we'll be using in the terminal to navigate the filesystem on your computer:

  • ls
  • pwd
  • cd

ls lists the contents of a directory.
pwd gives the full directory path to your current directory.
cd moves you into a new directory (it stands for "change directory").

Let's practice using these commands.

Open a terminal[edit]

You can find the Terminal application through Spotlight, or navigate to Applications/Utilities/Terminal. If you are using Anaconda Navigator, you can open terminal clicking on the play arrow button in the Environments -> base(root) window.

Practice using ls, pwd, and cd[edit]

(that's a letter l in "ls", not the number 1)

Type each of these commands and hit enter:

ls

This lists all the files in your current directory.


pwd

This displays the full directory path to your current directory. (It's stands for "print working directory.")


cd /

This will change you into the / root directory.


ls

This lists the contents of the / root directory.


cd Users

This will change you into the Users subdirectory of the / root directory.


ls

You should see a list of all the files in /Users, including the directory for your username. The directory for your username (e.g. /Users/Jessica is often called your "home directory".


pwd

This displays the full directory path to your current directory, /Users.


cd ..

.. means "parent directory", so this command moved you up to the parent directory. You were in /Users, so now you are in /, the root directory.


ls

This lists the contents of the root directory, confirming where you are.

If you want to get back to your home directory, you can do:

cd Users
cd YOURNAME

where YOURNAME is the name of your User directory.

One helpful tip is that you can start typing a directory, then hit the TAB key and the terminal will autocomplete it.

Tips[edit]

  • You can use Tab to auto-complete directory and file names. So from inside the root directory /, if you type cd Us and hit Tab, the terminal will auto-complete the directory name, and you can then hit enter to change into the /Users directory.
  • The terminal maintains a command history. You can use the up arrow to cycle through old commands.

Check your understanding[edit]

Answer these questions. Experiment at the terminal prompt if you need to! If you aren't sure about an answer, ask a helper.

  1. What directory are you in after starting a new terminal prompt?
  2. After starting a new terminal prompt, how would you get to the root directory?
  3. How do you check what files and directories are in your current working directory?
  4. If you are in directory /Users, and you want to get to /Users/jesstess/projects, how would you do that?
  5. What are 2 ways to avoid typing out a full navigation command? (hint: one requires that you've run the command before)
  6. What is the difference between a terminal prompt and a Python prompt?

Success![edit]

You've practiced using ls, pwd, and cd to navigate your computer's filesystem from the terminal.

Champagne.pngParty.png