mirror of
https://github.com/fish-shell/fish-shell
synced 2024-11-12 07:57:22 +00:00
c08c313c0a
Ignore-this: f9ff385e3c239cedfbc9850b06822bba darcs-hash:20090204191757-69c1e-a55c2a720fd784c7be2534feacecd5e2ebdbeecd.gz
7 lines
176 B
Fish
7 lines
176 B
Fish
function __fish_print_debian_services --description 'Prints services installed'
|
|
for service in /etc/init.d/*
|
|
if [ -x $service ]
|
|
basename $service
|
|
end
|
|
end
|
|
end
|