2
0
Fork 0
mirror of https://github.com/fish-shell/fish-shell synced 2025-01-15 06:24:01 +00:00
fish-shell/share/functions/__fish_systemctl_service_paths.fish

5 lines
198 B
Fish
Raw Normal View History

function __fish_systemctl_service_paths
command find /etc/systemd/system -type f -name '*.path' -printf '%f\n'
command find /usr/lib/systemd/system -type f -name '*.path' -printf '%f\n'
end