Unix Permissions & Chmod Generator

Chmod Generator allows you to generate Unix permissions in numerical, symbolic, stat formats with extra options (recursive, sticky, etc)


Example: symbolic format: o+wx or stat format: --x--x--x or number format: 644

User rights (u)
Group rights (g)
Others rights (o)
Read (4)
Write (2)
Execute (1)
Settings
setuid
setgid
sticky bit
recursive
preserve-root
reference file


Permissions Result

1. Octal Chmod Command

chmod 0700 file_name

2. Symbolic Chmod Command

chmod u=rwx,go= file_name

3. Permissions Result of stat and ls Command

rwx------

4. Permissions Result Represented by object

{ "user": { "read": true, "write": true, "execute": true }, "group": { "read": false, "write": false, "execute": false }, "others": { "read": false, "write": false, "execute": false }, "special": { "setuid": false, "setgid": false, "sticky": false } }