diff --git a/linux/permissions.md b/linux/permissions.md new file mode 100644 index 0000000..54574f7 --- /dev/null +++ b/linux/permissions.md @@ -0,0 +1,14 @@ +# 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 +