mirror of
https://github.com/fish-shell/fish-shell.git
synced 2025-02-15 01:23:51 +08:00
5 lines
197 B
Fish
5 lines
197 B
Fish
![]() |
|
||
|
function __fish_complete_groups --description "Print a list of local groups, with group members as the description"
|
||
|
cat /etc/group | sed -e "s/^\([^:]*\):[^:]*:[^:]*:\(.*\)/\1\tMembers: \2/"
|
||
|
end
|