É% a uma opção de stat?

0
Usage: stat [OPTION]... FILE...
Display file or file system status.

  -L, --dereference     follow links
  -f, --file-system     display file system status instead of file status
  -c  --format=FORMAT   use the specified FORMAT instead of the default;
                          output a newline after each use of FORMAT
      --printf=FORMAT   like --format, but interpret backslash escapes,
                          and do not output a mandatory trailing newline.
                          If you want a newline, include \n in FORMAT
  -t, --terse           print the information in terse form
      --help     display this help and exit
      --version  output version information and exit

The valid format sequences for files (without --file-system):

  %a   Access rights in octal
  %A   Access rights in human readable form

...

%a também é uma opção?

Como podemos usá-lo?

    
por Tim 28.07.2014 / 15:09

1 resposta

3

É um especificador de formato para a opção -c em vez de uma opção em si, por exemplo,

$ stat -c '%a' myfile
664

ou

$ stat -c '%n %a' myfile
myfile 664
    
por 28.07.2014 / 15:17

Tags