0

I want to know the octal expression of the linux file permission command:

-rwxr-xr-t
Rui F Ribeiro
  • 55,929
  • 26
  • 146
  • 227

1 Answers1

0

The stat command should be able to handle this:

stat -c "%a %n" /path/to/your/file

Your specific file permissions are represented by the octal 1755

GracefulRestart
  • 4,421
  • 1
  • 9
  • 10