Is there a Linux command, or a series of commands, which will allow me to get the permissions of a file in octal (e.g. 0644) format?
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
Try stat(1)
|
|||||||
|
|
|
From unix.com: Display permissions in octal format:
|
|||
|
|
|
The command is "stat" (Command line), and you can get at the info in code via fstat (See "man 2 stat") |
|||
|
|
|
For OSX:
or usually you're just interested in:
|
|||
|
|