Skip to content

Commit

Permalink
Merge pull request #161 from wsampson/gh-pages
Browse files Browse the repository at this point in the history
Update 02-navigating-the-filesystem.md – Terminal and prompt description #139
  • Loading branch information
kaitlinnewson authored Jun 7, 2022
2 parents 0ed6f02 + d13ba42 commit 4344294
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions episodes/02-navigating-the-filesystem.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ keypoints:

We will begin with the basics of navigating the Unix shell.

Let's start by opening the shell. This likely results in seeing a black window with a cursor flashing next to a dollar sign.
Let's start by opening the shell. This likely results in seeing a black or white window with a cursor flashing next to a dollar sign.
This is our command line, and the `$` is the command **prompt** to show that the system is ready for our input.
The appearance of the prompt will vary from system to system, depending on how the set up has been configured,
but it usually ends with a `$`.
The appearance of the prompt will vary from system to system, depending on how the set up has been configured.
Other common prompts include the `%` or `#` signs, but we will use `$` in this lesson to represent the prompt generally.

When working in the shell, you are always *somewhere* in the computer's
file system, in some folder (directory). We will therefore start by finding out
Expand Down Expand Up @@ -180,7 +180,7 @@ As we become more comfortable, we can get very quickly to the directory that we
> If you use Windows, you can search for the shell command on [http://man.he.net/](http://man.he.net/),
> and view the associated manual page. In some systems the command name followed by `--help` will work, e.g. `ls --help`.
>
> Also, the manual lists commands individually, e.g., although `-h` can only be used together with the `-l` option,
> Also, the manual lists commands individually, e.g., although `-h` can only be used together with the `-l` option,
> you'll find it listed as `-h` in the manual, not as `-lh`.
>
> >## Answer
Expand Down
2 changes: 1 addition & 1 deletion episodes/06-free-text.md
Original file line number Diff line number Diff line change
Expand Up @@ -362,7 +362,7 @@ This uses the translate command and a special syntax to remove all punctuation
Finally regularise the text by removing all the uppercase lettering.
~~~
$ tr [:upper:] [:lower:] < diary-notagspunct.txt > diary-clean.txt
$ tr '[:upper:]' '[:lower:]' < diary-notagspunct.txt > diary-clean.txt
~~~
{: .bash}
Expand Down

0 comments on commit 4344294

Please sign in to comment.