mirror of
https://github.com/fish-shell/fish-shell
synced 2024-11-14 08:58:01 +00:00
9 lines
297 B
Fish
9 lines
297 B
Fish
function __fish_systemctl_service_paths
|
|
if type -q systemctl
|
|
if __fish_contains_opt user
|
|
systemctl --user list-unit-files --no-legend --type=path ^/dev/null $argv | cut -f 1 -d ' '
|
|
else
|
|
systemctl list-unit-files --no-legend --type=path ^/dev/null $argv | cut -f 1 -d ' '
|
|
end
|
|
end
|
|
end
|