Files
tldr/pages.ru/common/cut.md
Emily Grace Seville 609ad26326 cut: add Russian translation (#7940)
* Add russian translations for cut

* Add pipes where stdin required
2022-04-16 22:22:36 +08:00

17 lines
808 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# cut
> Вырезать поля из стандартного ввода или файлов.
> Больше информации: <https://www.gnu.org/software/coreutils/cut>.
- Вывести указанный диапазон символов/полей каждой строки (`--{{characters|fields}}={{1|1,10|1-10|1-|-10}}` далее обозначается как `{{диапазон}}`):
`{{команда}} | cut --{{characters|fields}}={{1|1,10|1-10|1-|-10}}`
- Вывести диапазон каждой строки с указанным разделителем:
`{{команда}} | cut --delimiter="{{,}}" {{диапазон}}`
- Вывести диапазон каждой строки указанного файла:
`cut {{диапазон}} {{путь/к/файлу}}`