Files
collection/linux/permissions.md
2024-12-06 09:14:38 +01:00

15 lines
219 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