Skip to content

Commit

Permalink
New translations 04-pipefilter.md (Ukrainian)
Browse files Browse the repository at this point in the history
  • Loading branch information
tobyhodges committed Dec 17, 2024
1 parent 5690109 commit 2ed6698
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions locale/uk/episodes/04-pipefilter.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit 2ed6698

Please sign in to comment.