From c3cf706923ee0d9243d51c81a1091f6ccb906893 Mon Sep 17 00:00:00 2001 From: "Abd El-Twab M. Fakhry" <55063723+AbdeltwabMF@users.noreply.github.com> Date: Tue, 12 Oct 2021 04:26:23 +0200 Subject: [PATCH] gpasswd: add Arabic translation (#6819) --- pages.ar/linux/gpasswd.md | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 pages.ar/linux/gpasswd.md diff --git a/pages.ar/linux/gpasswd.md b/pages.ar/linux/gpasswd.md new file mode 100644 index 0000000000..806893c30f --- /dev/null +++ b/pages.ar/linux/gpasswd.md @@ -0,0 +1,24 @@ +# gpasswd + +> إدارة `/etc/group` و `/etc/gshadow`. +> لمزيد من التفاصيل: . + +- عرّف مديرين المجموعة المسماة: + +`sudo gpasswd -A {{مدير 2, مدير 1}} {{مجموعة}}` + +- عين أعضاء المجموعة المسماة: + +`sudo gpasswd -M {{عضو 2, عضو 1}} {{مجموعة}}` + +- إنشئ رقم سري للمجموعة المسماة: + +`gpasswd {{مجموعة}}` + +- أضف عضو إلي المجموعة المسماة: + +`gpasswd -a {{عضو}} {{مجموعة}}` + +- إحذف عضو من المجموعة المسماة: + +`gpasswd -d {{عضو}} {{مجموعة}}`