🔐

Chmod Calculator

Calculate Unix chmod value from permissions or reverse — octal to permission breakdown.

devops API: POST /api/tools/chmod-calculator

Input

🔌 API Usage

POST /api/tools/chmod-calculator
Content-Type: application/json

// Example body:
{
  "owner_read": "true",
  "owner_write": "true",
  "owner_exec": "false",
  "group_read": "true",
  "group_write": "false",
  "group_exec": "false",
  "other_read": "true",
  "other_write": "false",
  "other_exec": "false",
  "octal": ""
}