Default is Symbolic mode, which is represented by a Reference, Operator and Mode. Octal mode simplifies the usage and is represented by three (digits) Numerical values.
Below a default output of an "ls -a" command in bash:
total 0 -rw-r----- 1 www-data www-data 0 Sep 4 23:16 global. dir -rw-r----- 1 www-data www-data 0 Sep 4 23:16 global.pag -rw-r----- 1 www-data www-data 0 Sep 4 23:16 ip. dir -rw-r----- 1 www-data www-data 0 Sep 4 23:16 ip.pag |
As you can see access rights is represented in symbolic mode (-rw-r-----). Sometime is it helpful to additionally show the octal representation. However the "ls" command and many others do not support this. Below a script that takes the "ls" command input and adds the numerical representation of the security.
ls -la | awk '{k=0; for (i=0;i<=8;i++)k+=((substr($1,i+2,1)~/[rwx]/) \ *2^(8-i)); if (k) printf ( "%0o " ,k);print}' |
Output of this script will look similar to (notice the 3 digits at the start of each row):
total 0 640 -rw-r----- 1 www-data www-data 0 Sep 4 23:16 global. dir 640 -rw-r----- 1 www-data www-data 0 Sep 4 23:16 global.pag 640 -rw-r----- 1 www-data www-data 0 Sep 4 23:16 ip. dir 640 -rw-r----- 1 www-data www-data 0 Sep 4 23:16 ip.pag |
Enjoy this script!
sources: https://en.wikipedia.org/wiki/Chmod
No comments :
Post a Comment