Umask converter
From a umask value to the resulting file and directory modes.
Umask to resulting mode
Per-digit reference
Base mode is 666 for new files and 777 for new directories; the umask digit is removed from it.
| Umask digit | New file | New directory |
|---|---|---|
| 0 | rw- | rwx |
| 1 | rw- | rw- |
| 2 | r-- | r-x |
| 3 | r-- | r-- |
| 4 | -w- | -wx |
| 5 | -w- | -w- |
| 6 | --- | --x |
| 7 | --- | --- |