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 1 commit
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 {{path/to/file1 path/to/file2 ...}}`

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

`rm --force {{path/to/file1 path/to/file2 ...}}`

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

`rm --interactive {{path/to/file1 path/to/file2 ...}}`

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

`rm --verbose {{path/to/file1 path/to/file2 ...}}`

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

`rm --recursive {{path/to/file_or_directory1 path/to/file_or_directory2 ...}}`

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

`rm --dir {{path/to/directory}}`
Loading