Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

rm: add Arabic translation #15377

Merged
merged 7 commits into from
Dec 31, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 {{المسار/إلى/المجلد}}`
Loading