对于 bash 脚本,我需要从文件所有权属性中查找数字组 ID,类似于 的输出ls -nl
,但是只有数字。如果可能的话,我想避免大解析魔法......
答案1
- 仅确定“数字组 ID”:
stat -c %g /path/to/file/or/directory
- 仅确定“数字用户 ID”:
stat -c %u /path/to/file/or/directory
对于 bash 脚本,我需要从文件所有权属性中查找数字组 ID,类似于 的输出ls -nl
,但是只有数字。如果可能的话,我想避免大解析魔法......
stat -c %g /path/to/file/or/directory
stat -c %u /path/to/file/or/directory