Skip to content

Commit

Permalink
Fixed grammatical typos as per #1437
Browse files Browse the repository at this point in the history
  • Loading branch information
392781 authored Nov 8, 2023
1 parent 4141169 commit 60f2327
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions episodes/07-find.md
Original file line number Diff line number Diff line change
Expand Up @@ -650,10 +650,10 @@ Once you have thought about your answer, you can test the commands in the

## Solution

Option 1. is correct. Putting the match expression in quotes prevents the shell
Option 1 is correct. Putting the match expression in quotes prevents the shell
expanding it, so it gets passed to the `find` command.

Option 2 is also works in this instance because the shell tries to expand `*.dat`
Option 2 also works in this instance because the shell tries to expand `*.dat`
but there are no `*.dat` files in the current directory,
so the wildcard expression gets passed to `find`.
We first encountered this in
Expand Down

0 comments on commit 60f2327

Please sign in to comment.