mirror of
https://github.com/fish-shell/fish-shell
synced 2024-11-16 01:38:24 +00:00
5 lines
198 B
Fish
5 lines
198 B
Fish
|
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
|