From 7e35cfcb38433923c956fbad8ea418bfb1a11e2c Mon Sep 17 00:00:00 2001 From: Baribor Saturday Date: Thu, 9 Mar 2023 16:49:49 +0100 Subject: [PATCH] added readme --- 0x01-shell_permissions/README.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 0x01-shell_permissions/README.md diff --git a/0x01-shell_permissions/README.md b/0x01-shell_permissions/README.md new file mode 100644 index 0000000..6e7c62e --- /dev/null +++ b/0x01-shell_permissions/README.md @@ -0,0 +1,12 @@ +## Description +- **1-who_am_i**: script that prints the effective username of the current user. +- **2-groups**: script that prints all the groups the current user is part of. +- **3-new_owner**: script that changes the owner of the file hello to the user betty. +- **4-empty**: script that creates an empty file called hello. +- **5-execute**: script that adds execute permission to the owner of the file hello. +- **6-multiple_permissions**: script that adds execute permission to the owner and the group owner, and read permission to other users, to the file hello. +- **7-everybody**: script that adds execution permission to the owner, the group owner and the other users, to the file hello +- **10-mirror_permissions*: Write a script that sets the mode of the file hello the same as olleh’s mode. +- **11-directories_permission**: script that adds execute permission to all subdirectories of the current directory for the owner, the group owner and all other users. Regular files are not be changed. +- **12-directory_permissions**: script that creates a directory called my_dir with permissions 751 in the working directory. +- **13-change_group**: script that changes the group owner to school for the file hello \ No newline at end of file