~/tool-stack_

// Calculate Unix file permission modes visually

ownergroupother
// read
// write
// execute

// symbolic

rwxr-xr-x

// numeric

755

// command

chmod 755 <file>

Toggle read, write, and execute permissions for owner, group, and other to calculate Unix file permission modes. Shows the numeric octal value (e.g. 755), symbolic notation (rwxr-xr-x), and the ready-to-run chmod command. Essential for Linux/macOS file management and server configuration.