Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed grammatical typos (#1437) #1440

Merged
merged 1 commit into from
Nov 9, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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