Puoi ottenere il valore direttamente utilizzando un formato di output stat, ad es. BSD/OS X:
stat -f "%OLp" <file>
o in Linux
stat --format '%a' <file>
e in busybox
stat -c '%a' <file>
usa stat YOUR_FILE
a meno che non si scriva uno script che calcoli :
rwx rwx rwx ==> ( r = 4 ) if set + ( w = 2) if set + (x = 1) if set , for example:
You have :
-rw-wxrw- => (4+2+0)(0+2+1)(4+2+) = 0636
First argument before 9 permissions is one of :
- = regular file
d = directory
b = block device
c = character device
s = socket
p = pipe
f = fifo
A proposito, io uso stat command
il Linux box
, non freebsd
, perché esamina HFS
probabilmente funziona con UFS
.
Alcune informazioni aggiuntive su stat
:
$ stat -c %a file.txt
777
$ stat -c %A file.txt
-rwxrwxrwx