2025-09-29 09:30:35 +02:00
|
|
|
# localization: skip(private)
|
2007-09-22 06:52:12 +10:00
|
|
|
function __fish_complete_groups --description "Print a list of local groups, with group members as the description"
|
2017-02-13 17:30:38 +01:00
|
|
|
if command -sq getent
|
2020-04-18 14:58:07 +09:00
|
|
|
getent group | while read -l line
|
|
|
|
|
string split -f 1,4 : -- $line | string join \t
|
|
|
|
|
end
|
2016-11-27 21:27:22 -08:00
|
|
|
else
|
2020-04-18 14:58:07 +09:00
|
|
|
while read -l line
|
|
|
|
|
string split -f 1,4 : -- $line | string join \t
|
|
|
|
|
end </etc/group
|
2016-11-27 21:27:22 -08:00
|
|
|
end
|
2007-09-22 06:52:12 +10:00
|
|
|
end
|