“Linux Show Groups” Ответ

Linux Show Groups

cut -d: -f1 /etc/group | sort
chfle

Linux Show Groups

cat /etc/group

cat /etc/groups | grep <groupname>
  
# Example:
cat /etc/groups | grep sudo
# Output
sudo:x:27:<user1>, <user2>, <user3>...

# sudo : group name
# x : password (encrypted for security reasons)
# 27 : could be another number, represents group ID
# list of users in group
Big Merman

Linux Show Groups

cut -d: -f1 /etc/group | sort
Big Merman

Список группы пользователя Linux

groups
groups userName-Here
Difficult Dormouse

Перечислить группы Linux для пользователя

groups userName-Here
Super Dude

Ответы похожие на “Linux Show Groups”

Вопросы похожие на “Linux Show Groups”

Больше похожих ответов на “Linux Show Groups” по Shell/Bash

Смотреть популярные ответы по языку

Смотреть другие языки программирования