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

17 lines
495 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 {{path/to/file}}`
- ادغام چند فایل با هم و ایجاد فایل جدید:
`cat {{path/to/file1 path/to/file2 ...}} > {{target_file}}`
- ادغام چند فایل با هم و اضافه کردن آن به فایل مقصد:
`cat {{path/to/file1 path/to/file2 ...}} >> {{target_file}}`