mirror of
https://github.com/chubin/cheat.sheets
synced 2024-11-03 15:40:17 +00:00
9 lines
216 B
Plaintext
9 lines
216 B
Plaintext
# stat
|
|
# Display file or file system status
|
|
|
|
# display numerical values for file permissions
|
|
stat -c '%a %n' *
|
|
|
|
# Display only the octal permissions for the given directory. Great for tests.
|
|
stat --format='%a' /boot
|