Is it possible when listing a directory to view numerical unix permissions such as 644 rather than the symbolic output -rw-rw-r--
Thanks.
|
Is it possible when listing a directory to view numerical unix permissions such as 644 rather than the symbolic output -rw-rw-r-- Thanks.
| |||
|
feedback
|
|
it almost can ..
| |||||||
feedback
|
|
@The MYYN wow, nice awk! But what about suid, sgid and sticky bit? You have to extend your filter with s and t, otherwise they will not count and you get the wrong result. To calculate the octal number for this special flags, the procedure is the same but the index is at 4 7 and 10. the possible flags for files with execute bit set are
For test:
will result in:
and
will give:
| |||
feedback
|
|
Closest I can think of (keeping it simple enough) is
| |||
|
feedback
|
|
On the command line this works fine:
The question is how does one put this as an alias in the .bashrc_aliases file? I MUST point out that I did not create this script, I found it on one of the numerous Linux websites and have since been unable to track it down. | ||||
feedback
|