Answers for "ubuntu check permissions of file"

0

ubuntu check permissions of file

# To check permission of a file, or directory
# you can use the following command:
ls -l directory

# or
stat directory

# or, if you want to see only the permissions in numeric (octal) format:
stat -c %a directory
Posted by: Guest on June-22-2021

Code answers related to "ubuntu check permissions of file"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language