tldr/pages.fa/common/cat.md

17 lines
508 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

# cat
> چاپ و ترکیب کردن فایل ها.
> اطلاعات بیشتر: <https://www.gnu.org/software/coreutils/cat>.
- چاپ محتویات فایل بر روی صفحه نمایش:
`cat {{path/to/file}}`
- ادغام چند فایل با هم و ایجاد فایل جدید:
`cat {{path/to/file1 path/to/file2 ...}} > {{target_file}}`
- ادغام چند فایل با هم و اضافه کردن آن به فایل مقصد:
`cat {{path/to/file1 path/to/file2 ...}} >> {{target_file}}`