Files
collection/linux/permissions.md

15 lines
221 B
Markdown

## permissions
Linux permissions are ordered as follows:
- owner
- group
- others
### octal permissions
In octal representation the actions (read, write, execute) have the values:
- read = 4
- write = 2
- execute = 1