Files
tldr/pages.ru/common/cat.md

17 lines
485 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.

# cat
> Выводит и объединяет файлы.
> Больше информации: <https://manned.org/cat.1posix>.
- Выводит содержимое файла:
`cat {{файл}}`
- Объединяет несколька файлов в один:
`cat {{файл1 файл2 ...}} > {{итоговый_файл}}`
- Добавляет несколько файлов в конец файла:
`cat {{файл1 файл2 ...}} >> {{итоговый_файл}}`