Boston Python Workshop 8/Friday/Windows terminal navigation: Difference between revisions

From OpenHatch wiki
Content added Content deleted
imported>Jesstess
(Created page with "__NOTOC__ 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 <tt>/</tt>, and ...")
 
imported>Jesstess
No edit summary
 
(One intermediate revision by the same user not shown)
Line 1: Line 1:
__NOTOC__
__NOTOC__

[[File:Utilities-terminal.png|200px]]

== 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 has a root directory called <tt>/</tt>, and everything on your computer lives in subdirectories of this root directory.
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 <tt>/</tt>, 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 command line.
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 at a command prompt to navigate the filesystem on your computer:
There are two commands that we'll be using in a terminal to navigate the filesystem on your computer:
* <code>dir</code>
* <code>dir</code>
* <code>cd</code>
* <code>cd</code>
Line 12: Line 16:
<code>cd</code> moves you into a new directory (it stands for "change directory").
<code>cd</code> moves you into a new directory (it stands for "change directory").


Let's practice using these commands.
<b>Let's practice using these commands!</b>

===Open a terminal===


===Open a command prompt:===
* On Windows Vista or Windows 7: click on the Start menu (the Windows logo in the lower left of the screen), type <code>cmd</code> into the Search field directly above the Start menu button, and click on "cmd" in the search results above the Search field.
* On Windows Vista or Windows 7: click on the Start menu (the Windows logo in the lower left of the screen), type <code>cmd</code> into the Search field directly above the Start menu button, and click on "cmd" in the search results above the Search field.
* On Windows XP: click on the Start menu (the Windows logo in the lower left of the screen), click on "Run...", type <code>cmd</code> into the text box, and hit enter.
* On Windows XP: click on the Start menu (the Windows logo in the lower left of the screen), click on "Run...", type <code>cmd</code> into the text box, and hit enter.
Line 57: Line 62:
===Tips===
===Tips===


* You can use Tab to auto-complete directory and file names. So from inside the root directory, if you type <code>cd Use</code> and hit Tab, the command prompt will auto-complete the directory name, and you can then hit enter to change into the <code>C:\Users</code> directory.
* You can use Tab to auto-complete directory and file names. So from inside the root directory, if you type <code>cd Use</code> and hit Tab, the terminal will auto-complete the directory name, and you can then hit enter to change into the <code>C:\Users</code> directory.
* The command prompt maintains a command history. You can use the up arrow to cycle through old commands.
* 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 command prompt changes as you move around directories. The command prompt will always give the full directory path to your current directory.
* 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===
===Check your understanding===


Answer these questions. Experiment at the command line 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 helper.


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


===Success!===
===Success!===


You've practiced using <code>dir</code> and <code>cd</code> to navigate your computer's filesystem from the command prompt.
You've practiced using <code>dir</code> and <code>cd</code> to navigate your computer's filesystem from the terminal prompt.

[[File:Champagne.png|100px]][[File:Party.png|125px]]


[[Boston Python Workshop 8/Friday|&laquo; Back to the Friday setup page]]
[[Boston Python Workshop 8/Friday|&laquo; Back to the Friday setup page]]

Latest revision as of 00:49, 12 July 2013


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 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 two commands that we'll be using in a terminal to navigate the filesystem on your computer:

  • dir
  • cd

dir 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 or Windows 7: click on the Start menu (the Windows logo in the lower left of the screen), type cmd into the Search field directly above the Start menu button, and click on "cmd" in the search results above the Search field.
  • On Windows XP: click on the Start menu (the Windows logo in the lower left of the screen), click on "Run...", type cmd into the text box, and hit enter.

Practice using dir and cd

Type each of these commands and hit enter:

dir

This lists all the files in your current directory.


cd C:\

This will change you into the C:\ directory.


dir

This lists the contents of the C:\ directory.


cd Users

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


dir

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.


dir

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 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 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 dir and cd to navigate your computer's filesystem from the terminal prompt.

« Back to the Friday setup page