Permission bit translator - octal to textual and vice versa


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Permission bit translator - octal to textual and vice versa
# 1  
Old 03-10-2011
Permission bit translator - octal to textual and vice versa

Hi,

Does anyone know of any permission bit "translator"? One that can translate the permission bit from its textual value to its octal value and vice versa. It is alright if it is always just rwx but on a lot of occasions nowadays, getting a lots of s, S, t, etc.

Code:
-rwxrwxrwx   1 oracle   dba            0 Mar 11 13:27 x        ==> 777
-rwxr-x---   1 oracle   dba            0 Mar 11 13:27 y            ==> 750
-rw-r-----   1 oracle   dba            0 Mar 11 13:27 z            ==> 640

Sometimes I receive a request to change the octal value of the permission, i.e. do chmod 640, chmod 655 etc., and I want to know how it is supposed to look like after I've done the change so I can verify its ls -l output before and after the change. Am finidng it tedious to remember the text equivalence of the octal values ... is there a trick to that Smilie

What am wanting to do is to be able to read a list of file from a directory and then display their permission bit, in both textual and octal, ls -l will do the trick for the textual, but don't know how to do the octal bit. At the same time, also being able to run the script in such a way that when I give 777 as a parameter, it will display -rwxrwxrwx.

So for example, if the script is called checkperm.ksh, if I run it as checkperm.ksh /usr/test, it will list the files in that directory and display its permission bit, both octal and textual. If I run checkperm.ksh 750, it should display that 750 is -rwxr-x---

I found one in Google that is similar to what I wanted, but it is an online permission bit translator, not a script ... Smilie

Any suggestion will be much appreciated. Thanks.
# 2  
Old 03-11-2011
Text to octal has already been dicussed in this thread:

Code:
ls -l | awk 'BEGIN {
v["r1"]=400; v["w2"]=200; v["x3"]=100; v["s3"]=4100; v["S3"]=4000
v["r4"]=40 ; v["w5"]=20 ; v["x6"]=10 ; v["s6"]=2010; v["S6"]=2000
v["r7"]=4  ; v["w8"]=2  ; v["x9"]=1  ; v["t9"]=1001; v["T9"]=1000}
{val=0
 for (i=1;i<=9;i++) val=val+v[substr($0,i+1,1)i]
 printf "%4d %s\n",val,$NF}'


Last edited by Chubler_XL; 03-11-2011 at 12:33 AM..
# 3  
Old 03-11-2011
Quote:
Originally Posted by newbie_01
I want to know how it is supposed to look like after I've done the change so I can verify its ls -l output before and after the change. Am finidng it tedious to remember the text equivalence of the octal values ... is there a trick to that
It's not terribly complicated. If you learn how to convert between the symbolic (textual) and octal forms, you won't need a crutch. I'm not criticizing using a tool to help you get things done, but unix permissions are a fundamental aspect of the system which isn't very difficult to learn. A little time invested in this area will probably pay great dividends. Perhaps this post by Perderabo will be of use to you: https://www.unix.com/tips-tutorials/1...rmissions.html

Quote:
Originally Posted by newbie_01
What am wanting to do is to be able to read a list of file from a directory and then display their permission bit, in both textual and octal, ls -l will do the trick for the textual, but don't know how to do the octal bit.
The stat(1) command can do that on *BSD systems. I'm almost certain that gnu stat(1) can do it as well. Not sure about other platforms. It's not a standardized utility. If you decide to look into it, look for a format option.

Regards,
Alister
# 4  
Old 03-11-2011
Great post, it can really help me.....
# 5  
Old 03-11-2011
Here is a modified version of the above AWK-based permissions translator which I give my students.
Code:
ls -l | awk 'BEGIN {
   v["r1"] = 400; v["w2"] = 200; v["x3"] = 100; v["s3"] = 4100; v["S3"] = 4000;
   v["r4"] = 40 ; v["w5"] = 20 ; v["x6"] = 10 ; v["s6"] = 2010; v["S6"] = 2000;
   v["r7"] = 4  ; v["w8"] = 2  ; v["x9"] = 1  ; v["t9"] = 1001; v["T9"] = 1000;
}
NF <= 2 { print $0 }
NF > 2 { val = 0; xa = " ";
   for (i = 1; i <= 9; i++) val += v[substr($1, i+1, 1)i];
   if (substr($1, 11, 1) == "+") xa = "+";
   printf " %04d%c %s\n", val, xa, $0;
}'

Adds octal bits to left of regular ls -l output

Last edited by fpmurphy; 03-11-2011 at 01:09 PM..
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Command for Host Name to IP Address or Vice Versa

Hi, In unix or linux is there any command exist to identify Host Name to IP Address or Vice Versa? Thanks in advance (6 Replies)
Discussion started by: nag_sathi
6 Replies

2. UNIX for Dummies Questions & Answers

How to ping from Windows to Solaris 10 and vice versa?

Hi all, I installed Oracle virtual box 4.1.8 on my desktop. I installed Windows 2008 server R2 as one instance and Solaris 10 as another instance. When am trying to ping from Windows to solaris and vice-versa, ping not working. windows IP : 10.1.47.24 Solaris IP : 10.1.47.25 netstat... (2 Replies)
Discussion started by: kjks
2 Replies

3. Shell Programming and Scripting

Converting from Centigrade to Fahrenheit and vice versa.

I need to write a script that will take the input from a file and convert the number from centigrade to fahrenheit and vice versa. This is what I have but it doesn't seem to be correct. Also the data file has 11 numbers inside of it and the output needs to be listed as so: Fahrenheit Temperature... (18 Replies)
Discussion started by: N1ckNak
18 Replies

4. UNIX for Dummies Questions & Answers

Problem with scp from one server to the other (but not vice versa)

Hi I have a system PRIMARY where I can push or pull files to/from STANDBY using scp. I can also ssh without entering a password. On the STANDBY system if I try and use scp or ssh it asks for a password. I checked in ~/.ssh and there was no authorized_keys file on the PRIMARY server. After... (2 Replies)
Discussion started by: mrrossi
2 Replies

5. Ubuntu

What is the advantage of ubuntu over vista and vice versa?

i am thinking of replacing my vista with ubuntu. Questions: 1) what will be the advantages and disadvantages of using ubuntu instead of vista? 2) what will be the setbacks of replacing my vista? 3) how hard is it to cope up with the new OS? what must i learn to utilize ubuntu? (1 Reply)
Discussion started by: Anna Hussie
1 Replies

6. Shell Programming and Scripting

Uppercase to lowercase and vice versa

shell script to convert file names from UPPERCASE to lowercase file names or vice versa in linux anybody please help me out!!!! (5 Replies)
Discussion started by: jacky29
5 Replies

7. UNIX for Dummies Questions & Answers

Appending from a file to a script and vice versa

Hi, I am new to Unix and discovered this example problem online that I believe will help my learning: Run the command's below env >> xx env >> xx env >> xx env >> xx env >> xx You will now have a file called XX with the env redirected into it 5 times Create a script named... (2 Replies)
Discussion started by: Jimmy_c
2 Replies

8. Shell Programming and Scripting

Pdf to text conversion and vice versa

Hi, I have a pdf file. i want to convert it to text file and do some work on it and later want to convert it back to pdf. Can this be done via unix? or Is there a way unix can directly work on PDF file? (2 Replies)
Discussion started by: saltysumi
2 Replies

9. Shell Programming and Scripting

sed help to convert from lowercase to uppercase and vice versa!

Hello, can sed be used to convert all letters of a file from uppercase to lowercase and vice versa?i know tr command can be used but with sed is it possible? i came up with this :- sed 'y///' file1 actually the above command is also not working! Please help me. Thanks in advance :) (6 Replies)
Discussion started by: salman4u
6 Replies

10. Programming

binary to string conversion and vice versa

please let me know that in unix using c programming language we can do binary to string conversion and vice versa using ltoa and atol but how can we do it in c++ programming language. thank you in advance. (3 Replies)
Discussion started by: kinnaree
3 Replies
Login or Register to Ask a Question