Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jenting/chmod2umask
chmod2umask is a tool for converts the `chmod` file mode to the `umask` symbolic mode.
https://github.com/jenting/chmod2umask
chmod rust umask
Last synced: about 1 month ago
JSON representation
chmod2umask is a tool for converts the `chmod` file mode to the `umask` symbolic mode.
- Host: GitHub
- URL: https://github.com/jenting/chmod2umask
- Owner: jenting
- License: apache-2.0
- Created: 2020-11-04T01:31:17.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2020-12-07T05:09:42.000Z (about 4 years ago)
- Last Synced: 2024-10-16T13:41:58.518Z (3 months ago)
- Topics: chmod, rust, umask
- Language: Rust
- Homepage:
- Size: 12.7 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# chmod2umask
chmod2umask is a tool for converts the `chmod` file mode to the `umask` symbolic mode.
For examples, if the `chmod` file mode is `0644`, then it converts to `u=rw,g=r,o=r`. Afterthat, you could configures `umask` by symbolic mode `umask -S u=rw,g=r,o=r`.