1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-22 01:02:09 +02:00

pages.ar/*: revert placeholder translations (#15458)

This commit is contained in:
K.B.Dharun Krishna 2025-01-07 15:48:57 +05:30 committed by GitHub
parent 30d1a8f0fc
commit ee1d1ec6b3
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 7 additions and 7 deletions

View file

@ -25,4 +25,4 @@
- عرض معرف مستخدم آخر (UID) ومعرف المجموعة (GID) والمجموعات التي ينتمي إليها:
`id {{اسم المستخدم}}`
`id {{username}}`

View file

@ -6,24 +6,24 @@
- حذف ملفات محددة:
`rm {{المسار/إلى/الملف1 المسار/إلى/الملف2 ...}}`
`rm {{path/to/file1 path/to/file2 ...}}`
- حذف ملفات محددة وتجاهل الملفات الغير موجودة:
`rm --force {{المسار/إلى/الملف1 المسار/إلى/الملف2 ...}}`
`rm --force {{path/to/file1 path/to/file2 ...}}`
- حذف ملفات محددة مع واجهة تفاعلية قبل اي حذف للتأكد:
`rm --interactive {{المسار/إلى/الملف1 المسار/إلى/الملف2 ...}}`
`rm --interactive {{path/to/file1 path/to/file2 ...}}`
- حذف ملفات محددة مع عرض تفاصيل حول كل عملية حذف:
`rm --verbose {{المسار/إلى/الملف1 المسار/إلى/الملف2 ...}}`
`rm --verbose {{path/to/file1 path/to/file2 ...}}`
- حذف ملفات ومجلدات محددة بشكل تسلسلي:
`rm --recursive {{المسار/إلى/الملف_أو_المجلد1 المسار/إلى/الملف_أو_المجلد2 ...}}`
`rm --recursive {{path/to/file_or_directory1 path/to/file_or_directory2 ...}}`
- حذف المجلدات الفارغة (هذه الطريقة تعتبر آمنة):
`rm --dir {{المسار/إلى/المجلد}}`
`rm --dir {{path/to/directory}}`