1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-08-04 04:35:32 +02:00

cat: add Arabic translation (#15452)

This commit is contained in:
Machiavelli 2025-01-08 19:03:38 +02:00 committed by GitHub
parent 29dfde5133
commit 09a60c9c0c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

24
pages.ar/common/cat.md Normal file
View 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}}`