You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Dec 22, 2023. It is now read-only.
### This script converts symbolic representation of CHMOD permissions to it's numerical equivalent, and the Numerical representation of CHMOD permissions to its Symbolic equivalent as well.
4
+
Example (numerical to symbolic representation):
5
+
input: 777
6
+
output: rwxrwxrwx
7
+
8
+
Example (symbolic to numerical representation):
9
+
input: rwxrwxrwx
10
+
output: 777
11
+
12
+
### How to use this script?
13
+
14
+
1. Make sure all the requirements for the script are present in your system by running:
15
+
16
+
pip install -r requirements.txt
17
+
18
+
2. The script has 2 options:
19
+
- Symbolic to Numerical (N)
20
+
- Numerical to Symbolic (S)
21
+
22
+
Pass the desired mode of conversion while executing the script
0 commit comments