group-names

来自「Linux下文件工具。」· 代码 · 共 20 行

TXT
20
字号
# -*- sh -*-# Set `groups' to a space-separated list of at least two groups of which# the user is a member.groups=${FETISH_GROUPS-`(id -nG || /usr/xpg4/bin/id -nG) 2>/dev/null`}case "$groups" in  *' '*) ;;  *) cat <<EOF 1>&2$0: this test requires that you be a member of more than one group,but running \`id -nG' either failed or found just one.  If you reallyare a member of at least two group, then rerun this test with FETISH_GROUPSset in your environment to the space-separated list of names.  E.g.,  env FETISH_GROUPS='users cdrom' make checkEOF     (exit 77); exit     ;;esac

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?