2
0
Fork 0
mirror of https://github.com/fish-shell/fish-shell synced 2025-01-18 07:54:00 +00:00
fish-shell/share/functions/__fish_systemctl_sockets.fish

9 lines
295 B
Fish

function __fish_systemctl_sockets
if type -q systemctl
if __fish_contains_opt user
systemctl --user list-unit-files --no-legend --type=socket ^/dev/null $argv | cut -f 1 -d ' '
else
systemctl list-unit-files --no-legend --type=socket ^/dev/null $argv | cut -f 1 -d ' '
end
end
end