mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-08-23 18:03:59 +02:00

Co-authored-by: Lena <126529524+acuteenvy@users.noreply.github.com> Co-authored-by: Juri Dispan <juri.dispan@posteo.net> Co-authored-by: Isaac Vicente <isaacvicentsocial@gmail.com>
508 B
508 B
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}}