From 85f15ca92ddb054d18d8876e6fa32eeb95dc30e0 Mon Sep 17 00:00:00 2001 From: Toby Hodges Date: Tue, 17 Dec 2024 14:55:35 +0100 Subject: [PATCH] New translations 04-pipefilter.md (Italian) --- locale/it/episodes/04-pipefilter.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/locale/it/episodes/04-pipefilter.md b/locale/it/episodes/04-pipefilter.md index 4bdc12665..2190da472 100644 --- a/locale/it/episodes/04-pipefilter.md +++ b/locale/it/episodes/04-pipefilter.md @@ -731,8 +731,8 @@ and _only_ the processed data files? - `wc` counts lines, words, and characters in its inputs. - `cat` displays the contents of its inputs. - `sort` sorts its inputs. -- `head` displays the first 10 lines of its input. -- `tail` displays the last 10 lines of its input. +- `head` displays the first 10 lines of its input by default without additional arguments. +- `tail` displays the last 10 lines of its input by default without additional arguments. - `command > [file]` redirects a command's output to a file (overwriting any existing content). - `command >> [file]` appends a command's output to a file. - `[first] | [second]` is a pipeline: the output of the first command is used as the input to the second.