From f13d80e1ce3a7392bc34cfd251983a3ac1c3caf9 Mon Sep 17 00:00:00 2001 From: Emilio Biz <151553891+emiliobiz@users.noreply.github.com> Date: Tue, 16 Jan 2024 16:43:36 +0100 Subject: [PATCH] Fix spelling mistake in 04-pipefilter.md From "A character used in this way is a called a delimiter" to "A character used in this way is called a delimiter." --- episodes/04-pipefilter.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/episodes/04-pipefilter.md b/episodes/04-pipefilter.md index bc01c9330..1b183e9a8 100644 --- a/episodes/04-pipefilter.md +++ b/episodes/04-pipefilter.md @@ -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 Tab 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: