cchmod is a mode and permission calculator/converter for chmod.
Install via Cargo:
bash
$ cargo install cchmod
```bash $ cchmod cchmod
USAGE: cchmod [FLAGS]
ARGS:
FLAGS: -h, --help Prints help information -n, --num Output the octal form -s, --sym Output the symbolic form -V, --version Prints version information ```
Get the octal form of a mode:
bash
$ cchmod -n rwxr-xr-x
755
Get the symbolic form of a mode:
bash
$ cchmod -s 644
rw-r--r--
The same operations, on permission values:
```bash $ cchmod -n r-x 5
$ cchmod -s 7 rwx ```