mirror of
https://github.com/fish-shell/fish-shell.git
synced 2024-12-01 15:14:26 +08:00
5 lines
196 B
Fish
5 lines
196 B
Fish
function __fish_systemctl_sockets
|
|
command find /etc/systemd/system -type f -name '*.socket' -printf '%f\n'
|
|
command find /usr/lib/systemd/system -type f -name '*.socket' -printf '%f\n'
|
|
end
|