aboutsummaryrefslogtreecommitdiffhomepage
path: root/share/functions/__fish_print_debian_services.fish
blob: 378e6e39bfa04bf4cff61f0c1a2d9e2dfeed02a2 (plain)
1
2
3
4
5
6
7
function __fish_print_debian_services --description 'Prints services installed'
  for service in /etc/init.d/*
    if [ -x $service ]
      basename $service
    end
  end
end