Skip to content

Commit

Permalink
Update AWK_module.md
Browse files Browse the repository at this point in the history
  • Loading branch information
eberdan authored Mar 28, 2024
1 parent e79ef00 commit 88c34ac
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions Finding_and_summarizing_colossal_files/lessons/AWK_module.md
Original file line number Diff line number Diff line change
Expand Up @@ -277,6 +277,13 @@ to separate the comma separated fields of column 3 and ask which lines have the

What command would you give to print all of the observation dates that took place in May?

<details>
<summary><i>Click here for the answer</i></summary>

awk '{ print $1 }' animal_observations_edited.txt | awk -F "/" '$1 ~ "5"'

</details>

****

## Counting
Expand Down

0 comments on commit 88c34ac

Please sign in to comment.