获取 CHMOD 值和所有者名称 - Unix

Get CHMOD Value and Owner name - Unix

它们是在 Unix

上获取 CHMOD 值和目录所有者名称的任何命令

预期输出:PATH/OF/DIR 777 ADMIN

stat -c "%n %a %U" -- *

像您一样将通配符更改为特定目录 wish/need。

来自man stat

-c  --format=FORMAT
          use the specified FORMAT instead of the default; output a newline after each use of FORMAT

%a     access rights in octal (note '#' and '0' printf flags)
%n     file name
%U     user name of owner