mirror of
https://github.com/fish-shell/fish-shell
synced 2024-11-12 07:57:22 +00:00
8 lines
176 B
Fish
8 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
|