add another option

This commit is contained in:
kneutron 2022-04-12 09:46:46 -05:00 committed by GitHub
parent 58bf7f16c8
commit a59fda6056
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -3,13 +3,20 @@
# Display groups from id
if [ "$2" = "1" ]; then
id $1 |tr ',' '\n' |sort -t\( -k 2 |paste - - |column -t
elif [ "$2" = "2" ]; then
# nice print users allowed login groups without numbers or parens
# translate comma to newline, sort on field after paren, print without paren and strip trailing paren
id $1 |tr ',' '\n' |sort -t\( -k 2 |awk -F\( '{print $2}' |tr -d ')'
else
# Default
id $1 |tr ',' '\n' |tr '(' ' ' |tr ')' ' '|sort -t\( -n -k 2 |column -t
fi
exit;
Example default output:
103 netdev
108 bluetooth
109 lpadmin
@ -23,7 +30,7 @@ exit;
uid=1000 user gid=1000 user groups=1000 user
Arg $2 = 1 output = compact and fairly easy to read, useful if a lot of groups are attached:
Arg $2 = 1 output == compact and fairly easy to read, useful if a lot of groups are attached:
100(_lpoperator) 12(everyone)
204(_developer) 250(_analyticsusers)
@ -37,4 +44,22 @@ Arg $2 = 1 output = compact and fairly easy to read, useful if a lot of groups a
98(_lpadmin) uid=501(user) gid=20(staff) groups=20(staff)
Arg $2 = 2 output == groups-only:
all_admins_grp
apache_admin_dev_grp
apache_admin_eite_grp
apache_admin_pete_grp
audio
bluetooth
cdrom
user gid=1000 # NOTE it's not perfect, but useful for grepping
dip
floppy
lpadmin
netdev
plugdev
scanner
video