mirror of
https://github.com/fish-shell/fish-shell.git
synced 2024-11-25 18:03:37 +08: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
|