Skip to content

Commit

Permalink
Fix spelling mistake in 04-pipefilter.md
Browse files Browse the repository at this point in the history
From "A character used in this way is a called a delimiter" to "A character used in this way is called a delimiter."
  • Loading branch information
emiliobiz authored Jan 16, 2024
1 parent 7ae6dcc commit f13d80e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion episodes/04-pipefilter.md
Original file line number Diff line number Diff line change
Expand Up @@ -550,7 +550,7 @@ $ cut -d , -f 2 animals.csv

The `cut` command is used to remove or 'cut out' certain sections of each line in the file,
and `cut` expects the lines to be separated into columns by a <kbd>Tab</kbd> character.
A character used in this way is a called a **delimiter**.
A character used in this way is called a **delimiter**.
In the example above we use the `-d` option to specify the comma as our delimiter character.
We have also used the `-f` option to specify that we want to extract the second field (column).
This gives the following output:
Expand Down

0 comments on commit f13d80e

Please sign in to comment.