mirror of
https://github.com/fish-shell/fish-shell
synced 2024-11-11 07:34:32 +00:00
6475d763d0
The descriptions are "Start: Start the service" "Stop : Stop the service" "Restart: Restart the service"
20 lines
1.1 KiB
Fish
20 lines
1.1 KiB
Fish
# First argument is the names of the service, i.e. a file in /etc/init.d
|
|
complete -c rc-service -n "test (__fish_number_of_cmd_args_wo_opts) = 1" \
|
|
-xa "(__fish_print_service_names)" --description "Service name"
|
|
|
|
# The second argument is what action to take with the service
|
|
complete -c rc-service -n "test (__fish_number_of_cmd_args_wo_opts) -gt 1" \
|
|
-xa "start stop restart"
|
|
|
|
# Complete rc-service the options
|
|
complete -c rc-service -s e -l exists -d 'Tests if the service exists or not'
|
|
complete -c rc-service -s i -l ifexists \
|
|
-d 'If the service exists, then run the command'
|
|
complete -c rc-service -s l -l list -d 'List all available services'
|
|
complete -c rc-service -s r -l resolve \
|
|
-d 'Resolve the service name to an init script'
|
|
complete -c rc-service -s h -l help -d 'Display the help output'
|
|
complete -c rc-service -s C -l nocolor -d 'Disable color output'
|
|
complete -c rc-service -s V -l version -d 'Display software version'
|
|
complete -c rc-service -s v -l verbose -d 'Run verbosely'
|
|
complete -c rc-service -s q -l quiet -d 'Run quietly (Does not affect errors)'
|