mirror of
https://github.com/fish-shell/fish-shell.git
synced 2026-05-05 13:31:15 -03: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
|