aboutsummaryrefslogtreecommitdiffhomepage
path: root/share/functions/__fish_print_service_names.fish
blob: 3eeb00155fb894ba315eed36a7c1a5b75feecd46 (plain)
1
2
3
4
5
6
7
8
9
10
function __fish_print_service_names -d 'All services known to the system'
	if type -f systemctl >/dev/null
        command systemctl list-units  -t service | cut -d ' ' -f 1 | grep '\.service$' | sed -e 's/\.service$//'
    else if type -f rc-service
        command rc-service -l
    else
        command ls /etc/init.d
    end
end