Bash

如何獲取文件的數字組所有者?

  • October 26, 2020

對於 bash 腳本,我需要從文件所有權屬性中找到數字組 ID,類似於 的輸出ls -nl,但只有數字。如果可能的話,我想避免大的解析魔法……

  • 僅確定“數字組 ID”:
stat -c %g /path/to/file/or/directory
  • 僅確定“數字使用者 ID”:
stat -c %u /path/to/file/or/directory

引用自:https://unix.stackexchange.com/questions/609767