Permission mode converter
Octal to symbolic, including the setuid, setgid and sticky bits.
Octal to symbolic
Digit reference
| Digit | Symbolic | Permissions |
|---|---|---|
| 0 | --- | none |
| 1 | --x | execute |
| 2 | -w- | write |
| 3 | -wx | write, execute |
| 4 | r-- | read |
| 5 | r-x | read, execute |
| 6 | rw- | read, write |
| 7 | rwx | read, write, execute |
The leading digit
| Bit | Name | Shown as |
|---|---|---|
| 4 | setuid | s in the user triad |
| 2 | setgid | s in the group triad |
| 1 | sticky | t in the other triad |