In FreeBSD and also in Linux, how can I get the numerical chmod value of a file? For example, 644 instead of -rw-r--r--? I need an automatic way for a Bash script.
Asked
Active
Viewed 2.5e+01k times
166
Michael Mrozek
- 93,103
- 40
- 240
- 233
me.at.coding
- 3,117
-
Similar: Convert ls -l output format to chmod format – Stéphane Chazelas May 15 '21 at 07:51
4 Answers
263
You can get the value directly using a stat output format, e.g.
Linux:
stat --format '%a' <file>
BSD/OS X:
stat -f "%OLp" <file>
Busybox:
stat -c '%a' <file>
-
2single quotes are not needed, and
--formatcan be abbreviated-c. This works:stat -c %a <file>– johny why Sep 23 '16 at 17:53 -
I needed the busybox answer on Ubuntu, otherwise 'stat: cannot read file system information for '%OLp': No such file or directory' – tofutim Mar 11 '18 at 13:34
-
I use
lubuntu, havebusyboxandstat -cgives the result, but-fspits out error and prints blocks and inodes info, similar to tofutim. – Timo May 14 '21 at 19:32
14
use stat YOUR_FILE unless write script that calculate :
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+0) = 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
By the way , I use stat command on Linux box, not freebsd, because it investigate HFS probably work with UFS.
PersianGulf
- 10,850
-
Yes, i found it under
FreeBSD box, usestat -x YOUR_FILEunderFreeBSD box– PersianGulf Sep 01 '12 at 19:02 -
-
command to show friendly? not only a number like
666or codes-rw-wxrw-but a text with explanations about each permission. – Peter Krauss Dec 03 '18 at 19:18 -
@PeterKrauss , It's better to write an
awkto retrive numerical result. – PersianGulf Dec 06 '18 at 16:07 -
-
You forgot the
land please, your homepage in english;) we are global people.. – Timo May 14 '21 at 19:23
12
Some additional information on stat:
$ stat -c %a file.txt
777
$ stat -c %A file.txt
-rwxrwxrwx
Mateen Ulhaq
- 743
-
it is
stat -f %A file.txtunder mac, it would return 644 or some other 3 digital number. – Weijing Jay Lin Jun 15 '17 at 07:11 -
5
With GNU stat, try this to get the value for all non-hidden files in the current working directory.
stat --format "%a %n" -- *
Stéphane Chazelas
- 544,893
Hatem Badawi
- 197