mirror of
https://github.com/fish-shell/fish-shell
synced 2024-11-14 17:07:44 +00:00
44d13869ad
Disable php completion for the 4th part of the command, since php-eselect is differently designed and causes errors Closes #1131.
10 lines
334 B
Fish
10 lines
334 B
Fish
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
|
|
|