aboutsummaryrefslogtreecommitdiffhomepage
path: root/share/functions/__fish_print_service_names.fish
blob: 45d653a760a42972559c6daa1606c3f414f3c8f4 (plain)
1
2
3
4
5
6
7
8
9
function __fish_print_service_names -d 'All services known to the system'
    if test -d /run/systemd/system
        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