mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-08-04 02:35:32 +02:00
cat: add Arabic translation (#15452)
This commit is contained in:
parent
29dfde5133
commit
09a60c9c0c
1 changed files with 24 additions and 0 deletions
24
pages.ar/common/cat.md
Normal file
24
pages.ar/common/cat.md
Normal file
|
@ -0,0 +1,24 @@
|
|||
# cat
|
||||
|
||||
> طباعة وسلسلة الملفات.
|
||||
> لمزيد من التفاصيل: <https://manned.org/cat.1posix>.
|
||||
|
||||
- طباعة محتوي ملف إلى `stdout`:
|
||||
|
||||
`cat {{path/to/file}}`
|
||||
|
||||
- دمج عدة ملفات في ملف إخراج:
|
||||
|
||||
`cat {{path/to/file1 path/to/file2 ...}} > {{path/to/output_file}}`
|
||||
|
||||
- إلحاق عدة ملفات بملف إخراج:
|
||||
|
||||
`cat {{path/to/file1 path/to/file2 ...}} >> {{path/to/output_file}}`
|
||||
|
||||
- نسخ محتويات ملف إلى ملف إخراج دون استخدام الذاكرة المؤقتة:
|
||||
|
||||
`cat -u {{/dev/tty12}} > {{/dev/tty13}}`
|
||||
|
||||
- كتابة `stdin` إلى ملف:
|
||||
|
||||
`cat - > {{path/to/file}}`
|
Loading…
Add table
Reference in a new issue