Skip to content

Commit b2bff00

Browse files
authored
Merge pull request swcarpentry#1533 from swcarpentry/more-typos
typos: spelling/grammar
2 parents 6754505 + be25c7f commit b2bff00

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

episodes/01-intro.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ that automate repetitive tasks.
5555

5656
Using the shell will take some effort and some time to learn.
5757
While a GUI presents you with choices to select, CLI choices are not automatically presented to you.
58-
It can be daunting at first, but once you've come familliar with this different style
58+
It can be daunting at first, but once you've come familiar with this different style
5959
of interacting, you will be able to efficiently accomplish a huge variety of tasks.
6060

6161
### Let's get started.

episodes/03-create.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -480,7 +480,7 @@ quotes.txt thesis/quotations.txt
480480
```
481481

482482
The `-r` or `--recursive` option for `cp`
483-
applies the command not just to the specifed directory,
483+
applies the command not just to the specified directory,
484484
but to all its contents.
485485

486486
As an example, we can use this to back up a directory:

episodes/04-pipefilter.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -439,7 +439,7 @@ the algorithm is 'head of sort of line count of `*.pdb`'.
439439

440440
The redirection and pipes used in the last few commands are illustrated below:
441441

442-
![](fig/redirects-and-pipes.svg){alt='Redirects and Pipes of different commands: "wc -l \*.pdb" will direct the output to the shell. "wc -l \*.pdb > lengths" will direct output to the file"lengths". "wc -l \*.pdb | sort -n | head -n 1" will build a pipeline where the output of the "wc" command is the input to the "sort" command, the output ofthe "sort" command is the input to the "head" command and the output of the"head" command is directed to the shell'}
442+
![](fig/redirects-and-pipes.svg){alt='Redirects and Pipes of different commands: "wc -l \*.pdb" will direct the output to the shell. "wc -l \*.pdb > lengths" will direct output to the file"lengths". "wc -l \*.pdb | sort -n | head -n 1" will build a pipeline where the output of the "wc" command is the input to the "sort" command, the output of the "sort" command is the input to the "head" command and the output of the"head" command is directed to the shell'}
443443

444444
::::::::::::::::::::::::::::::::::::::: challenge
445445

episodes/07-find.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ $ grep -n -w -v "the" haiku.txt
194194
Similar to how the `-r` option applies `cp` to an entire directory's contents,
195195
we can add `-r` (recursive) to our `grep` command
196196
to search for a pattern through all the files in
197-
in a directory and its subdirectories.
197+
a directory and its subdirectories.
198198

199199
Let's search for `Yesterday` in the `shell-lesson-data/exercise-data/writing` directory:
200200

0 commit comments

Comments
 (0)