Skip to content

Commit

Permalink
Change wording (#2397)
Browse files Browse the repository at this point in the history
* Change wording

* update

* Update docs/books/admin_guide/07-file-systems.md

---------

Co-authored-by: Antoine Le Morvan <[email protected]>
  • Loading branch information
jimcat8 and alemorvan authored Sep 28, 2024
1 parent 5ef47ab commit 38e2d53
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/books/admin_guide/07-file-systems.md
Original file line number Diff line number Diff line change
Expand Up @@ -844,7 +844,7 @@ The description of **directory permissions** is as follows:
| :-------------------: | ----------------------------------------------------------------------------------------------------------------------------------------- |
| r | Read. Allows reading the contents of a directory (`ls -R`). |
| w | Write. Allows you to create, and delete files/directories in this directory, such as commands `mkdir`, `rmdir`, `rm`, `touch`, and so on. |
| x | Execute. Allows descending in the directory (`cd`). |
| x | Execute. Allows entry into directory (`cd`). |
| - | No right |

!!! info
Expand All @@ -861,7 +861,7 @@ The description of **directory permissions** is as follows:

!!! info

In some commands, it is possible to designate everyone with **a** (_all_). **a = ugo**.
In some commands, you can use *a* (_all_) to represent *ugo*. For example: `chmod a+x FileName` is equivalent to `chmod u+x,g+x,o+x FileName` or `chmod ugo+x FileName`.

### Attribute management

Expand Down

0 comments on commit 38e2d53

Please sign in to comment.