2006-01-24 23:01:33 +00:00
|
|
|
#
|
|
|
|
# Completion for sudo
|
|
|
|
#
|
|
|
|
|
2015-11-23 12:32:29 +00:00
|
|
|
# All these options should be valid for GNU and OSX sudo
|
|
|
|
complete -c sudo -s A -d "Ask for password via the askpass or \$SSH_ASKPASS program"
|
|
|
|
complete -c sudo -s C -d "Close all file descriptors greater or equal to the given number" -a "(seq 0 255)"
|
2011-09-23 08:24:21 +00:00
|
|
|
complete -c sudo -s E -d "Preserve environment"
|
2015-11-23 12:32:29 +00:00
|
|
|
complete -c sudo -s H -d "Set home"
|
|
|
|
complete -c sudo -s K -d "Remove the credential timestamp entirely"
|
2011-09-23 08:24:21 +00:00
|
|
|
complete -c sudo -s P -d "Preserve group vector"
|
|
|
|
complete -c sudo -s S -d "Read password from stdin"
|
2015-11-23 12:32:29 +00:00
|
|
|
complete -c sudo -s b -d "Run command in the background"
|
2011-09-23 08:24:21 +00:00
|
|
|
complete -c sudo -s e -r -d "Edit"
|
2015-11-23 12:32:29 +00:00
|
|
|
complete -c sudo -s g -a "(__fish_complete_groups)" -x -d "Run command as group"
|
|
|
|
complete -c sudo -s h -n "__fish_no_arguments" -d "Display help and exit"
|
|
|
|
complete -c sudo -s i -d "Run a login shell"
|
|
|
|
complete -c sudo -s k -d "Reset or ignore the credential timestamp"
|
|
|
|
complete -c sudo -s l -d "List the allowed and forbidden commands for the given user, or the full path to the given command if it is allowed"
|
|
|
|
complete -c sudo -s n -d "Do not prompt for a password - if one is needed, fail"
|
|
|
|
complete -c sudo -s p -d "Specify a custom password prompt"
|
|
|
|
complete -c sudo -s s -d "Run the given command in a shell"
|
|
|
|
complete -c sudo -s u -a "(__fish_complete_users)" -x -d "Run command as user"
|
|
|
|
complete -c sudo -s v -n "__fish_no_arguments" -d "Validate the credentials, extending timeout"
|
2007-01-28 03:26:52 +00:00
|
|
|
|
2018-05-22 22:29:12 +00:00
|
|
|
# Complete the command we are executed under sudo
|
|
|
|
complete -c sudo -d "Command to run" -x -a "(__fish_complete_subcommand_root -u -g)"
|
|
|
|
|
2018-05-18 01:19:31 +00:00
|
|
|
# Or provide completions
|
|
|
|
function __fish_complete_sudo_payload
|
|
|
|
set -l tokens (commandline -co)
|
|
|
|
# at least sudo and cmd
|
|
|
|
if test (count $tokens) -ge 2; \
|
|
|
|
# and second parameter is not a flag
|
|
|
|
and string match -qr '^[^-]' -- $tokens[2] \
|
|
|
|
# and 2nd parameter is a valid cmd
|
|
|
|
and type -q $tokens[2]
|
|
|
|
echo $tokens[2..-1] | complete -C # complete from 2nd parameter onwards
|
|
|
|
# or at least sudo, switch, and cmd
|
|
|
|
else if test (count $tokens) -ge 3; \
|
|
|
|
# and second parameter takes no arguments
|
|
|
|
and string match -qr '^-[AEHKPSbiknsv]\b' -- $tokens[2]
|
|
|
|
# and 3rd parameter is a valid cmd
|
|
|
|
and type -q $tokens[3]
|
|
|
|
echo $tokens[3..-1] | complete -C # complete from 3rd parameter onwards
|
|
|
|
# or sudo, switch, param, and cmd
|
|
|
|
else if test (count $tokens) -ge 4; \
|
|
|
|
# and 4th parameter is a valid cmd
|
|
|
|
and type -q $tokens[4] \
|
|
|
|
echo $tokens[4..-1] | complete -C # complete from 4th parameter onwards
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-05-22 22:29:12 +00:00
|
|
|
# Provide completions for the command being sudo'd, as if `sudo` weren't in play
|
2018-05-18 01:19:31 +00:00
|
|
|
complete -c sudo -xa '(__fish_complete_sudo_payload)'
|