mirror of
https://github.com/fish-shell/fish-shell
synced 2024-11-12 07:57:22 +00:00
14 lines
577 B
Fish
14 lines
577 B
Fish
function __fish_service_print_names
|
|
if type -f systemctl >/dev/null
|
|
command systemctl list-units -t service | cut -d ' ' -f 1 | grep '\.service$' | sed -e 's/\.service$//'
|
|
end
|
|
|
|
command ls /etc/init.d
|
|
end
|
|
|
|
# Fist argument is the names of the service, i.e. a file in /etc/init.d
|
|
complete -c service -n "test (count (commandline -poc)) = 1" -xa "(__fish_service_print_names)" --description "Service name"
|
|
|
|
#The second argument is what action to take with the service
|
|
complete -c service -n "test (count (commandline -poc)) -gt 1" -xa '$__fish_service_commands'
|
|
|