- Symbolic vs numeric — which should I use?
- Numeric (755, 644) is unambiguous and the common form in scripts. Symbolic (u+x, g-w) is safer for incremental changes — avoids accidentally clearing other bits.
- What do 755, 644, 600 mean?
- 755: owner all, group+others read+execute (typical for directories and executables). 644: owner rw, others r (typical for data files). 600: owner rw, others nothing (private keys).
- Does it show the effect visually?
- Yes — an rwxrwxrwx grid lights up showing which bits are set. Much faster to verify than mentally decoding 3 octal digits.
- What about setuid and sticky bits?
- The 4-digit form (4755, 1777) covers these. Setuid (4), setgid (2), sticky (1). The tool handles both 3-digit and 4-digit input.