Chmod Symbolic Mode Permissions

Chmod symbolic mode, special permissions, ACLs. Manage file and directory permissions

Setup
Set the target permissions, choose command options, and compare from current mode.

Input

Use current mode to generate minimal symbolic diffs. Target checkboxes define the final state.
Accepts octal (`755`, `0755`, `1755`) or symbolic listing.
Owner (u) Group (g) Others (o)
Read (4)
Write (2)
Execute (1)
Advanced Options
Result
Compare before/after, inspect warnings, and copy the right chmod command.

Output

Waiting for input
Warnings update when current mode, target mode, or options change.
Before / After Preview
Current: 755 (-rwxr-xr-x)
Target: 755 (rwxr-xr-x)
Changed Segments: No changes detected.
Primary Command (By Intent)
chmod (no-op) folder_name
Minimal Symbolic Diff
chmod (no-op) folder_name
Exact Symbolic Set
chmod u=rwx,g=rx,o=rx,u-s,g-s,-t folder_name
Octal Command
chmod 755 folder_name
Permission Effects

Owner

  • Owner can read
  • Owner can write
  • Owner can execute

Group

  • Group can read
  • Group can't write
  • Group can execute

Others

  • Others can read
  • Others can't write
  • Others can execute

Programs must be written for people to read, and only incidentally for machines to execute.

Abelson and Sussman

CodersTool Categories