Skip to content

Commit

Permalink
Merge pull request #1449 from emiliobiz/patch-1
Browse files Browse the repository at this point in the history
Fix spelling mistake in 04-pipefilter.md
  • Loading branch information
bkmgit authored Jan 17, 2024
2 parents 7ae6dcc + f13d80e commit f40c0b5
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 f40c0b5

Please sign in to comment.