Skip to content

Commit

Permalink
rm: add Arabic translation (#15377)
Browse files Browse the repository at this point in the history
  • Loading branch information
MachiavelliII authored Dec 31, 2024
1 parent 4bb9722 commit c52053b
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions pages.ar/linux/rm.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
# rm

> يستخدم الأمر لحذف الملفات او المجلدات
> أنظر أيضًا: `rmdir`.
> لمزيد من التفاصيل: <https://www.gnu.org/software/coreutils/rm>.
- حذف ملفات محددة:

`rm {{المسار/إلى/الملف1 المسار/إلى/الملف2 ...}}`

- حذف ملفات محددة وتجاهل الملفات الغير موجودة:

`rm --force {{المسار/إلى/الملف1 المسار/إلى/الملف2 ...}}`

- حذف ملفات محددة مع واجهة تفاعلية قبل اي حذف للتأكد:

`rm --interactive {{المسار/إلى/الملف1 المسار/إلى/الملف2 ...}}`

- حذف ملفات محددة مع عرض تفاصيل حول كل عملية حذف:

`rm --verbose {{المسار/إلى/الملف1 المسار/إلى/الملف2 ...}}`

- حذف ملفات ومجلدات محددة بشكل تسلسلي:

`rm --recursive {{المسار/إلى/الملف_أو_المجلد1 المسار/إلى/الملف_أو_المجلد2 ...}}`

- حذف المجلدات الفارغة (هذه الطريقة تعتبر آمنة):

`rm --dir {{المسار/إلى/المجلد}}`

0 comments on commit c52053b

Please sign in to comment.