Windows terminal navigation: Difference between revisions

From CommunityData
(→‎Open a terminal: Updated to include Windows 10.)
m (→‎Check your understanding: Changed 'helper' to 'mentor'.)
Line 66: Line 66:
===Check your understanding===
===Check your understanding===


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


# What directory are you in after starting a new terminal prompt?
# What directory are you in after starting a new terminal prompt?

Revision as of 00:28, 5 October 2015

Utilities-terminal.png

Practice navigating from the terminal

The filesystem on your computer is like a tree made up of folders (also called "directories") and files. The filesystem is divided between drives, each named with a letter; the main drive has a root directory called C:\, and everything on this drive 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 two commands that we'll be using in the PowerShell terminal to navigate the filesystem on your computer:

  • ls
  • cd

ls lists the contents of a directory.
cd moves you into a new directory (it stands for "change directory").

Let's practice using these commands!

Open a terminal

  • On Windows Vista/7/8/8.1/10: click on the Start menu (the Windows logo in the lower left corner of the screen) or press the Windows key to open the Start menu, type PowerShell into the Search field directly above the Start menu button, and click on "PowerShell" in the search results above the Search field. (Alternately, you can just type Powershell without selecting the search box, and you'll immediately switch to the search interface.)
  • If you are using using Windows XP, you probably don't have PowerShell installed. If you have XP, find a mentor to have them help you install PowerShell.

Practice using ls and cd

Type each of these commands and hit enter:

ls

This lists all the files in your current directory.


cd C:\

This will change you into the C:\ directory.


ls

This lists the contents of the C:\ directory.


cd Users

This will change you into the Users subdirectory of the C:\ directory.


ls

You should see the names of all the files and directories in C:\Users.


cd ..

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


ls

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

Tips

  • You can use Tab to auto-complete directory and file names. So from inside the root directory, if you type cd Use and hit Tab, the terminal will auto-complete the directory name, and you can then hit enter to change into the C:\Users directory.
  • The terminal maintains a command history. You can use the up arrow to cycle through old commands.
  • Note that the text that makes up the terminal prompt changes as you move around directories. The terminal prompt will always give the full directory path to your current directory.

Check your understanding

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

  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 C:\Users, and you want to get to C:\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!

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

Champagne.pngParty.png