-
-
Notifications
You must be signed in to change notification settings - Fork 4.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
4bb9722
commit c52053b
Showing
1 changed file
with
29 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 {{المسار/إلى/المجلد}}` |