mirror of
https://github.com/fish-shell/fish-shell.git
synced 2024-11-24 15:02:37 +08:00
5 lines
199 B
Fish
5 lines
199 B
Fish
function __fish_systemctl_services
|
|
command find /etc/systemd/system -type f -name '*.service' -printf '%f\n'
|
|
command find /usr/lib/systemd/system -type f -name '*.service' -printf '%f\n'
|
|
end
|