mirror of
https://github.com/fish-shell/fish-shell
synced 2024-12-28 13:53:10 +00:00
parent
f25b9f9831
commit
3f35012afb
1 changed files with 11 additions and 7 deletions
|
@ -1,11 +1,15 @@
|
||||||
|
|
||||||
|
if string match -q "OpenSSL*" (command openssl version)
|
||||||
|
# This is real OpenSSL that has the list command.
|
||||||
function __fish_openssl_subcommand_options --description "Print options for openssl subcommand"
|
function __fish_openssl_subcommand_options --description "Print options for openssl subcommand"
|
||||||
set -l cmd (commandline -poc)
|
set -l cmd (commandline -poc)
|
||||||
openssl list -options $cmd[2] | string replace -r -- '^(\S*)\s*.*' '-$1'
|
openssl list -options $cmd[2] | string replace -r -- '^(\S*)\s*.*' '-$1'
|
||||||
end
|
end
|
||||||
|
|
||||||
if command openssl list -1 2>&1 >/dev/null
|
|
||||||
complete -c openssl -n __fish_use_subcommand -x -a "(openssl list -1 -commands -cipher-commands -digest-commands)"
|
complete -c openssl -n __fish_use_subcommand -x -a "(openssl list -1 -commands -cipher-commands -digest-commands)"
|
||||||
else
|
|
||||||
complete -c openssl -n __fish_use_subcommand -x -a "(openssl help 2>&1 | string match -rv '^[A-Z]|^\$' | string split -n ' ')"
|
|
||||||
end
|
|
||||||
complete -c openssl -n 'not __fish_use_subcommand && string match -qr -- "^-" (commandline -ct)' -a "(__fish_openssl_subcommand_options)"
|
complete -c openssl -n 'not __fish_use_subcommand && string match -qr -- "^-" (commandline -ct)' -a "(__fish_openssl_subcommand_options)"
|
||||||
|
else
|
||||||
|
# Perhaps LibreSSL - see #7966
|
||||||
|
# TODO: support subcommand options.
|
||||||
|
complete -c openssl -n __fish_use_subcommand -x -a "(openssl help 2>&1 | string match -rv '^[A-Z]|^\$|Error' | string split -n ' ')"
|
||||||
|
end
|
||||||
|
|
Loading…
Reference in a new issue