Skip to content

Commit

Permalink
Merge pull request #1440 from 392781/main
Browse files Browse the repository at this point in the history
Fixed grammatical typos (#1437)
  • Loading branch information
bkmgit authored Nov 9, 2023

Verified

This commit was signed with the committer’s verified signature.
alanhwu Alan Wu
2 parents 4141169 + 60f2327 commit 5bf3172
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
@@ -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

0 comments on commit 5bf3172

Please sign in to comment.