mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-08-04 04:15:35 +02:00
zip: add Arabic translation (#15566)
This commit is contained in:
parent
acd880d921
commit
e327ea4a9d
1 changed files with 33 additions and 0 deletions
33
pages.ar/common/zip.md
Normal file
33
pages.ar/common/zip.md
Normal file
|
@ -0,0 +1,33 @@
|
|||
# zip
|
||||
|
||||
> أداة لضغط وحزم الملفات في أرشيف Zip.
|
||||
> انظر أيضًا: `unzip`.
|
||||
> لمزيد من التفاصيل: <https://manned.org/zip>.
|
||||
|
||||
- إضافة ملفات/مجلدات إلى أرشيف محدد ([r]بشكل متكرر):
|
||||
|
||||
`zip -r {{path/to/compressed.zip}} {{path/to/file_or_directory1 path/to/file_or_directory2 ...}}`
|
||||
|
||||
- إزالة ملفات/مجلدات من أرشيف محدد ([d]حذف):
|
||||
|
||||
`zip -d {{path/to/compressed.zip}} {{path/to/file_or_directory1 path/to/file_or_directory2 ...}}`
|
||||
|
||||
- أرشفة ملفات/مجلدات مع [x]استثناء عناصر معينة:
|
||||
|
||||
`zip -r {{path/to/compressed.zip}} {{path/to/file_or_directory1 path/to/file_or_directory2 ...}} -x {{path/to/excluded_files_or_directories}}`
|
||||
|
||||
- أرشفة ملفات/مجلدات مع مستوى ضغط محدد (`0` - الأقل، `9` - الأعلى):
|
||||
|
||||
`zip -r -{{0..9}} {{path/to/compressed.zip}} {{path/to/file_or_directory1 path/to/file_or_directory2 ...}}`
|
||||
|
||||
- إنشاء أرشيف [e]مشفر باستخدام كلمة مرور محددة:
|
||||
|
||||
`zip -r -e {{path/to/compressed.zip}} {{path/to/file_or_directory1 path/to/file_or_directory2 ...}}`
|
||||
|
||||
- أرشفة ملفات/مجلدات في أرشيف Zip مقسم[s] إلى أجزاء متعددة (مثل أجزاء بحجم 3 جيجابايت):
|
||||
|
||||
`zip -r -s {{3g}} {{path/to/compressed.zip}} {{path/to/file_or_directory1 path/to/file_or_directory2 ...}}`
|
||||
|
||||
- طباعة محتويات أرشيف محدد:
|
||||
|
||||
`zip -sf {{path/to/compressed.zip}}`
|
Loading…
Add table
Reference in a new issue