Created
February 6, 2017 21:16
-
-
Save beugley/47b4812df0837fc90e783347faee2432 to your computer and use it in GitHub Desktop.
Python script to convert a Linux octal permission number to a text string
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def perm_to_text(perm): | |
perms = { | |
"0": "---", | |
"1": "--x", | |
"2": "-w-", | |
"3": "-wx", | |
"4": "r--", | |
"5": "r-x", | |
"6": "rw-", | |
"7": "rwx" | |
} | |
if len(perm) == 4: | |
first = perm[0] | |
perm = perm[1:] | |
else: | |
first = "" | |
try: | |
outperms = "" | |
for p in perm: | |
outperms += perms[p] | |
except KeyError as e: | |
outperms = perm | |
if first != "": | |
if first == '0': | |
pass | |
elif first == '1': | |
pass | |
elif first == '2': | |
if outperms[5] == 'x': | |
outperms = outperms[:5]+'s'+outperms[6:] | |
else: | |
outperms = outperms[:5]+'S'+outperms[6:] | |
elif first == '4': | |
if outperms[2] == 'x': | |
outperms = outperms[:2]+'s'+outperms[3:] | |
else: | |
outperms = outperms[:2]+'S'+outperms[3:] | |
else: | |
outperms = perm | |
return "-"+outperms |
import stat
stat.filemode(0o107664) # '-rwSrwSr-T'
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Sorry, my function does exactly the reverse of the initial question... It's like the post from Justin Timperio
I have a version which handles the additional permissions like Sticky bit, Set User/Group bits. For instance, it converts 'rwsr-Sr-T'. Note that my code is extracted from my tools and allows to pass an octal value (usually a mistake). Here is the code 👍