mirror of
git://git.code.sf.net/p/zsh/code
synced 2025-11-01 06:20:55 +01:00
44349: completion option updates
This commit is contained in:
parent
a531a1ec2d
commit
6a0874cad6
25 changed files with 137 additions and 32 deletions
|
|
@ -22,6 +22,7 @@ args=(
|
|||
'--noprofile[do not load /etc/profile, ~/.bash_profile, etc.]'
|
||||
'--norc[do not load ~/.bashrc]'
|
||||
'--posix[enable POSIX mode]'
|
||||
'--pretty-print[format a shell script]'
|
||||
'(-r --restricted)--restricted[act as restricted shell]'
|
||||
'(: -)--version[display version information]'
|
||||
# This is ugly, but this way the + variants have accurate descriptions. Note
|
||||
|
|
|
|||
|
|
@ -45,7 +45,7 @@ case $OSTYPE in
|
|||
'-g[force giaddr field]:relay:_hosts'
|
||||
'-i[use a DUID with DHCPv4 clients]'
|
||||
'-I[use the standard DDNS scheme]'
|
||||
'--version[display version number]'
|
||||
'(-)--version[display version number]'
|
||||
'(-4)-S[use Information-request to get only stateless configuration]'
|
||||
'(-4)*-T[ask for IPv6 temporary addresses]'
|
||||
'(-4)-P[enable IPv6 prefix delegation]'
|
||||
|
|
@ -67,6 +67,10 @@ case $OSTYPE in
|
|||
'--request-options[specify list of options the client is to request from the server]:options'
|
||||
'--timeout[specify time after which dhclient will decide that no DHCP servers can be contacted]:timeout'
|
||||
'--dad-wait-time[specify maximum time to wait for duplicate address detection]:time (seconds)'
|
||||
'--prefix-len-hint[specify length to request when requesting new prefixes]:length'
|
||||
'--decline-wait-time[specify time an IPv4 client should wait between declining an address and issuing a discover]:time (seconds)'
|
||||
'--address-prefix-len[specify length of the prefix for IPv6 addresses]:length'
|
||||
'(-)'{--help,-h}'[display usage information]'
|
||||
)
|
||||
;;
|
||||
esac
|
||||
|
|
|
|||
|
|
@ -78,6 +78,7 @@ _arguments -s -C $args \
|
|||
'*-6[use IPv6 only]' \
|
||||
'*-t+[specify type]:type:_dns_types' \
|
||||
'*-q+[specify host name to query]:host:_hosts' \
|
||||
"-r[don't read ~/.digrc]" \
|
||||
'*-x+[reverse lookup]:IP address' \
|
||||
'*-k+[specify TSIG key file]:file:_files' \
|
||||
'*-y+[specify TSIG key]:hmac\:name\:key' \
|
||||
|
|
|
|||
|
|
@ -4,11 +4,12 @@ local curcontext="$curcontext" state state_descr line ret=1
|
|||
typeset -A opt_args
|
||||
|
||||
_arguments -s -S \
|
||||
'(-r)-a[respond to all events rather than consolidating them to avoid looping]' \
|
||||
'-c[execute clear before invoking utility]' \
|
||||
'-d[track directories and exit if a new file is added]' \
|
||||
"-n[non-interactive mode; don't access TTY]" \
|
||||
'-p[postpone first execution of the utility]' \
|
||||
'-r[reload a persistent child process]' \
|
||||
'(-a)-r[reload a persistent child process]' \
|
||||
'(*)-s[evaluate the first argument using interpreter specified by $SHELL]' \
|
||||
'(-): :->command' \
|
||||
'*::arguments:_normal' && ret=0
|
||||
|
|
|
|||
|
|
@ -11,6 +11,10 @@ case $variant in
|
|||
'(--ignore-environment -i --help --version)*'{-u+,--unset=}'[remove variable from the environment]:env var to remove:_parameters -g "*export*"'
|
||||
'(-C --chdir)'{-C+,--chdir=}'[change working directory]:directory:_directories'
|
||||
'(-S --split-string)'{-S+,--split-string=}'[perform word splitting]:string to split'
|
||||
'--block-signal=[block delivery of signals to command]:signal:_sequence _signals'
|
||||
'--default-signal=[reset handling of signals to the default]:signal:_sequence _signals'
|
||||
'--ignore-signal=[set handling of signals to do nothing]:signal:_sequence _signals'
|
||||
'--list-signal-handling[list non default signal handling to stderr]'
|
||||
'(-v --debug)'{-v,--debug}'[print verbose information for each processing step]'
|
||||
"${ign}(- *)--help[display help information]"
|
||||
"${ign}(- *)--version[display version information]"
|
||||
|
|
|
|||
|
|
@ -28,12 +28,12 @@ if [[ $state = command ]]; then
|
|||
else
|
||||
cmds=(
|
||||
build cert check cleanup contents dependency environment fetch
|
||||
generate_index help install list lock mirror open outdated owner
|
||||
generate_index help install info list lock mirror open outdated owner
|
||||
pristine push query rdoc search server signin signout sources
|
||||
specification stale uninstall unpack update which yank
|
||||
)
|
||||
cmds=( ${(M)cmds:#${words[1]}*} )
|
||||
if (( ${#cmds} == 1 )); then
|
||||
if (( ${#cmds} == 1 )) || [[ $cmds[1] = install ]]; then
|
||||
cmd="$cmds[1]"
|
||||
curcontext="${curcontext%:*:*}:gem-${cmd}:"
|
||||
fi
|
||||
|
|
@ -65,15 +65,19 @@ if [[ $state = command ]]; then
|
|||
contents|pristine|rdoc)
|
||||
args+=( '(*)--all[apply to all installed gems]' )
|
||||
;|
|
||||
list|query) def[local]='!' ;|
|
||||
info|list|query) def[local]='!' ;|
|
||||
search) def[remote]='!' ;|
|
||||
list|query|search)
|
||||
info|list|query|search)
|
||||
args+=( ${(e)lropts}
|
||||
'(-a --all)'{-a,--all}'[display all gem versions]'
|
||||
'(-e --exact)'{-e,--exact}'[use exact string matching instead of regex]'
|
||||
'(-I --no-installed -i --installed)'{-i,--installed}'[check if gem is installed]'
|
||||
'(-I --no-installed -i --installed)'{-I,--no-installed}'[check if gem is not installed]'
|
||||
'--no-versions[display only gem names]'
|
||||
)
|
||||
;|
|
||||
list|query|search)
|
||||
args+=(
|
||||
'(-d --details)'{-d,--details}'[display detailed gem information]'
|
||||
'!(-d --details)--no-details'
|
||||
)
|
||||
|
|
@ -114,11 +118,15 @@ if [[ $state = command ]]; then
|
|||
'--suggestions[suggest alternates when gems are not found]'
|
||||
)
|
||||
;|
|
||||
(un|)install|pristine|update)
|
||||
args+=(
|
||||
'(-n --bindir)'{-n,--bindir=}'[specify directory where binary files are located]:directory:_directories'
|
||||
)
|
||||
;|
|
||||
(un|)install|update)
|
||||
args+=(
|
||||
'--ignore-dependencies[ignore dependency requirements]'
|
||||
'(-i --install-dir)'{-i,--install-dir=}'[specify gem repository directory to get installed gems]:directory:_directories'
|
||||
'(-n --bindir)'{-n,--bindir=}'[specify directory where binary files are located]:directory:_directories'
|
||||
)
|
||||
;|
|
||||
owner|push)
|
||||
|
|
@ -130,13 +138,18 @@ if [[ $state = command ]]; then
|
|||
owner|push|signin|yank)
|
||||
args+=( '--host=[use another gemcutter-compatible host]:host:_urls' )
|
||||
;|
|
||||
owner|push|signin)
|
||||
args+=( '--otp=[specify digit code for multifactor authentication]:code' )
|
||||
;|
|
||||
install|pristine|update)
|
||||
args+=( '(-E --env-shebang)'{-E,--env-shebang}'[rewrite executables with a shebang of /usr/bin/env]' )
|
||||
;|
|
||||
|
||||
build)
|
||||
args+=(
|
||||
'--force[skip validation of the spec]'
|
||||
'(--strict)--force[skip validation of the spec]'
|
||||
'(--force)--strict[consider warnings as errors when validating the spec]'
|
||||
'(-o --output)'{-o+,--output=}'[output gem with the given filename]:file:_files'
|
||||
'-C+[run as if specified directory was the current directory]:directory:_directories'
|
||||
'1:gemspec file:_files -g "*.gemspec(-.)"'
|
||||
)
|
||||
;;
|
||||
|
|
@ -150,6 +163,7 @@ if [[ $state = command ]]; then
|
|||
'(-K --private-key)'{-K,--private-key=}'[specify key for --sign or --build]:key'
|
||||
'(-s --sign)'{-s,--sign=}'[sign specified certificate with the key from -K and the certificate from -C]:certificate'
|
||||
'(-d --days)'{-d,--days=}'[specify days before certificate expires]:days'
|
||||
'(-R --re-sign)'{-R,--re-sign}'[re-sign the certificate]'
|
||||
)
|
||||
;;
|
||||
check)
|
||||
|
|
@ -161,7 +175,10 @@ if [[ $state = command ]]; then
|
|||
)
|
||||
;;
|
||||
cleanup)
|
||||
args+=( '(-n -d --dryrun)'{-n,-d,--dryrun}"[don't uninstall gems]" )
|
||||
args+=(
|
||||
'(-n -d --dryrun)'{-n,-d,--dryrun}"[don't uninstall gems]"
|
||||
"--user-install[cleanup in user's home directory instead of GEM_HOME]"
|
||||
)
|
||||
;;
|
||||
contents)
|
||||
args+=(
|
||||
|
|
|
|||
|
|
@ -60,6 +60,7 @@ case "$service" in
|
|||
'--no-ca-verification[disable CA certificate verification]' '!--ca-verification'
|
||||
'--ocsp[enable OCSP certificate verification]' '!--no-oscp'
|
||||
'(-r --resume)'{-r,--resume}'[establish a session and resume]'
|
||||
'--earlydata=[send early data on resumption from the specified file]:file:_files'
|
||||
'(-e --rehandshake)'{-e,--rehandshake}'[connect, establish a session and rehandshake immediately]'
|
||||
"--verify-hostname-str=[specify server's hostname to use for validation]:hostname"
|
||||
'(-s --starttls)'{-s,--starttls}'[start TLS on EOF or SIGALRM]'
|
||||
|
|
@ -89,6 +90,7 @@ case "$service" in
|
|||
'--inline-commands[inline commands of the form ^<cmd>^]'
|
||||
'--inline-commands-prefix=[change delimiter used for inline commands]:delimiter [^]'
|
||||
'--fips140-mode[report status of FIPS140-2 mode in gnutls library]'
|
||||
'--logfile=[redirect informational messages to a specific file]:file:_files'
|
||||
)
|
||||
;;
|
||||
|
||||
|
|
@ -97,6 +99,8 @@ case "$service" in
|
|||
'--sni-hostname-fatal[send fatal alert on sni-hostname mismatch]'
|
||||
'*--alpn=[specify ALPN protocol to be enabled by the server]:protocol'
|
||||
'--alpn-fatal[send fatal alert on non-matching ALPN name]'
|
||||
'--earlydata[accept early data]'
|
||||
'--maxearlydata=[specify maximum early data size to accept]:size'
|
||||
"--nocookie[don't require cookie on DTLS sessions]"
|
||||
'(-g --generate)'{-g,--generate}'[generate Diffie-Hellman parameters]'
|
||||
'(-q --quiet)'{-q,--quiet}'[suppress some messages]'
|
||||
|
|
@ -189,6 +193,8 @@ case "$service" in
|
|||
'--stdout-info[print information to stdout instead of stderr]'
|
||||
'--ask-pass[enable interaction for entering password when in batch mode]'
|
||||
'--pkcs-cipher=[specify cipher to use for pkcs operations]:cipher:(3des 3des-pkcs12 aes-128 aes-192 aes-256 rc2-40 arcfour)'
|
||||
'!(--no-text)--text'
|
||||
"--no-text[don't output textual information before PEM-encoded certificates, private keys, etc]"
|
||||
)
|
||||
;;
|
||||
|
||||
|
|
|
|||
|
|
@ -108,10 +108,10 @@ _arguments -C \
|
|||
'-html-target-in-new-window[allow opening new windows from html]' \
|
||||
'-html-margin[specify margin]:margin (spaces)' \
|
||||
'-html-user-font-size[specify font size in graphics mode]:size' \
|
||||
'-html-t-text-color[specify text color in text mode]:color (0..15)' \
|
||||
'-html-t-link-color[specify link color in text mode]:color (0..15)' \
|
||||
'-html-t-background-color[specify background color in text mode]:color (0..15)' \
|
||||
'-html-t-ignore-document-color[ignore colors from HTML in text mode]:ignore:(0 1)' \
|
||||
'-html-text-color[specify text color in text mode]:color (0..15)' \
|
||||
'-html-link-color[specify link color in text mode]:color (0..15)' \
|
||||
'-html-background-color[specify background color in text mode]:color (0..15)' \
|
||||
'-html-ignore-document-color[ignore colors from HTML in text mode]:ignore:(0 1)' \
|
||||
'-html-g-text-color[specify text color in graphics mode]:color (0xRRGGBB)' \
|
||||
'-html-g-link-color[specify link color in graphics mode]:color (0xRRGGBB)' \
|
||||
'-html-g-background-color[specify background color in graphics mode]:color (0xRRGGBB)' \
|
||||
|
|
|
|||
|
|
@ -59,6 +59,8 @@ if _pick_variant -r variant binutils=GNU elftoolchain=elftoolchain elfutils=elfu
|
|||
binutils)
|
||||
compset -P '@' && files='*:options file:_files'
|
||||
args+=(
|
||||
'!(--no-recurse-limit)--recurse-limit'
|
||||
'--no-recurse-limit[disable demangling recursion limit]'
|
||||
'(-f --format -P)-f+[specify output format]:format:(bsd sysv posix)'
|
||||
'(-C --no-demangle)--demangle=-[decode symbol names]::style:(auto gnu lucid arm hp edg gnu-v3 java gnat rust dlang)'
|
||||
'--plugin[load specified plugin]:plugin'
|
||||
|
|
|
|||
|
|
@ -24,6 +24,7 @@ case $variant in
|
|||
"*"{-P,--private=}"[Display object format specific contents]:option"
|
||||
"(-h --section-headers --headers)"{-h,--section-headers,--headers}"[Display the contents of the section headers]"
|
||||
"(-x --all-headers)"{-x,--all-headers}"[Display the contents of all headers]"
|
||||
'--disassemble=[display assembler contents for specified symbol]:symbol'
|
||||
"(-D --disassemble-all)"{-D,--disassemble-all}"[Display assembler contents of all sections]"
|
||||
"(-S --source)"{-S,--source}"[Intermix source code with disassembly]"
|
||||
"(-g --debugging)"{-g,--debugging}"[Display debug information in object file]"
|
||||
|
|
@ -55,6 +56,8 @@ case $variant in
|
|||
"(-F --file-offsets)"{-F,--file-offsets}"[Include file offsets when displaying information]"
|
||||
"(-C --demangle)-C[Decode mangled/processed symbol names]"
|
||||
"(-C --demangle)--demangle=-[decode mangled/processed symbol names]::style:(auto gnu lucid arm hp edg gnu-v3 java gnat rust dlang)"
|
||||
'!(--no-recurse-limit)--recurse-limit'
|
||||
'--no-recurse-limit[disable demangling recursion limit]'
|
||||
"(-w --wide)"{-w,--wide}"[Format output for more than 80 columns]"
|
||||
"(-z --disassemble-zeroes)"{-z,--disassemble-zeroes}"[Do not skip blocks of zeroes when disassembling]"
|
||||
|
||||
|
|
|
|||
|
|
@ -36,15 +36,24 @@ opts=(
|
|||
'-s[enable some switch parsing for switches after script name]'
|
||||
'-S[look for the script using PATH environment variable]'
|
||||
'-T-[turn on tainting checks]::taint level [1]:((0\:strings\ from\ streams/environment/ARGV\ are\ tainted 1\:no\ dangerous\ operation\ by\ tainted\ value 2\:process/file\ operations\ prohibited 3\:all\ generated\ objects\ are\ tainted 4\:no\ global\ \(non-tainted\)\ variable\ modification/no\ direct\ output))'
|
||||
'(-v --verbose)'{-v,--verbose}'[print version number, then turn on verbose mode]'
|
||||
'(--verbose)-v[print version number, then turn on verbose mode]'
|
||||
'(-v)--verbose[turn on verbose mode and disable script from stdin]'
|
||||
'-x-[strip off text before #!ruby line and perhaps cd to directory]:directory:_files -/'
|
||||
'(1 * -)--copyright[print the copyright]'
|
||||
--{en,dis}'able=[enable or disable features]:feature:(gems did_you_mean rubyopt frozen_string_literal all)'
|
||||
--{en,dis}'able=[enable or disable features]:feature:(gems did_you_mean rubyopt frozen_string_literal jit all)'
|
||||
\!--{en,dis}able-{gems,rubyopt,all}
|
||||
'--dump=[dump debug information]:information:_sequence compadd - insns yydebug parsetree parsetree_with_comment'
|
||||
--{external,internal}'-encoding=:charset:->charsets'
|
||||
'!'{-y,--yydebug}
|
||||
'!--dump=:target:(version copyright usage yydebug syntax parsetree parsetree_with_comment insns)'
|
||||
'--jit[enable jit with default options]'
|
||||
'--jit-warnings[enable printing JIT warnings]'
|
||||
'--jit-debug[enable JIT debugging (very slow)]'
|
||||
'--jit-wait[wait until JIT compilation is finished everytime (for testing)]'
|
||||
'--jit-save-temps[save JIT temporary files]'
|
||||
'--jit-verbose=-[print JIT logs of level num or less to stderr]:maximum log level [0]'
|
||||
'--jit-max-cache=-[specify max number of methods to be JIT-ed in a cache]:number [1000]'
|
||||
'--jit-min-calls=-[specify number of calls to trigger JIT]:calls [5]'
|
||||
)
|
||||
|
||||
irb=(
|
||||
|
|
@ -70,7 +79,6 @@ irb=(
|
|||
|
||||
erb=(
|
||||
"-P[don't evaluate lines which start with %]"
|
||||
'-S[specify safe level for running script]:level:(1 2 3 4)'
|
||||
'-T[specify trim mode]:mode [0]:((0\:EOL\ remains 1\:EOL\ removed\ if\ line\ ends\ with\ %\> 2\:EOL\ removed\ if\ line\ starts\ with\ \<%\ and\ ends\ with\ %\> -\:EOL\ is\ removed\ if\ line\ ends\ with\ -%\>,\ leading\ whitespace\ removed\ after\ \<%-))'
|
||||
'(-d --debug)'{-d,--debug}'[set debugging flags (set $DEBUG to true)]'
|
||||
'-n[used with -x, prepends line number to output]'
|
||||
|
|
|
|||
|
|
@ -66,6 +66,7 @@ elif _pick_variant -r variant gnu=GNU unix --version; then
|
|||
aopts=( )
|
||||
(( $#words > 2 )) && ign='!'
|
||||
args+=(
|
||||
'--debug[annotate program execution]'
|
||||
'--follow-symlinks[follow symlinks when processing in place]'
|
||||
'(-i --in-place -s --separate)'{-i-,--in-place=-}$inplace
|
||||
'(-c --copy)'{-c,--copy}'[copy instead of rename when shuffling files in in-place mode]'
|
||||
|
|
|
|||
|
|
@ -49,6 +49,7 @@ options+=(
|
|||
'(-*batch -*interactive)'$^dashes'-batch[force batch I/O]'
|
||||
'(-*batch -*interactive)'$^dashes'-interactive[force interactive I/O]'
|
||||
$^dashes'-lookaside[specify size and number of entries for lookaside memory]:size (bytes): :entries'
|
||||
$^dashes'-memtrace[trace all memory allocations and deallocations'
|
||||
$^dashes'-mmap[set default mmap size]:size'
|
||||
$^dashes'-newline[set output row separator]:separator [\n]'
|
||||
$^dashes'-pagecache[specify size and number of slots for page cache memory]:size (bytes): :slots'
|
||||
|
|
@ -69,6 +70,7 @@ if [[ -n $words[(r)-A*] ]]; then
|
|||
+ '(commands)' \
|
||||
'(-c --create)'{-c,--create}'[create a new archive]'
|
||||
'(-u --update)'{-u,--update}'[update or add files to an existing archive]'
|
||||
'(-i --insert)'{-i,--insert}'[like -u but always add even if mtime unchanged]'
|
||||
'(-t --list)'{-t,--list}'[list contents of archive]'
|
||||
'(-x --extract)'{-x,--extract}'[extract files from archive]'
|
||||
)
|
||||
|
|
|
|||
|
|
@ -97,7 +97,7 @@ _ssh () {
|
|||
'-M+[specify maximum number of signatures]:number' \
|
||||
'-s+[add keys provided by the PKCS#11 shared library]:library:_files -g "*.(so|dylib)(|.<->)(-.)"' \
|
||||
'-t+[set maximum lifetime for identity]:maximum lifetime (in seconds or time format):' \
|
||||
"-T[test usability of identity files' private keys]" \
|
||||
"-T[test usability of identity files' private keys]:*:public key file:_files -g '*.pub(-.)'" \
|
||||
'-v[verbose mode]' \
|
||||
'-q[be quiet after a successful operation]' \
|
||||
'-X[unlock the agent]' \
|
||||
|
|
|
|||
|
|
@ -249,7 +249,7 @@ if [[ -n "$state" ]]; then
|
|||
_message -e values "compression quality (0-100), or \`r' (output RGB)"
|
||||
ret=0
|
||||
;;
|
||||
lzw|lzma|zip)
|
||||
lzw|lzma|zip|zstd|webp)
|
||||
_values 'LZW and deflate option' \
|
||||
'1[without differencing]' \
|
||||
'2[with differencing]' && ret=0
|
||||
|
|
@ -260,7 +260,7 @@ if [[ -n "$state" ]]; then
|
|||
while _tags; do
|
||||
while _next_label values expl 'compression scheme'; do
|
||||
compadd "$expl[@]" - none jbig g4 packbits sgilog && ret=0
|
||||
compadd "$expl[@]" -qS: - lzw zip lzma jpeg g3 && ret=0
|
||||
compadd "$expl[@]" -qS: - lzw zip lzma zstd webp jpeg g3 && ret=0
|
||||
done
|
||||
(( ret )) || return 0
|
||||
done
|
||||
|
|
|
|||
|
|
@ -49,6 +49,7 @@ _arguments -s -S \
|
|||
'(-n -C -X)-H[turn on HTML output]:base HREF' \
|
||||
'(-n -C -X)-T[title for HTML output]:title' \
|
||||
'(-n -C -X)--nolinks[turn off hyperlinks in HTML output]' \
|
||||
'--fromfile[read paths from specified files]' \
|
||||
'(-)--version[version of tree]' \
|
||||
'(-)--help[verbose usage listing]' \
|
||||
'*:directory:_files -/'
|
||||
|
|
|
|||
|
|
@ -16,6 +16,7 @@ _arguments -C -s \
|
|||
'*-n+[turn off flags]:flags:->noflags' \
|
||||
'--report-speed=:type:(bits)' \
|
||||
'(--input-file -i)'{--input-file=,-i+}'[specify input file]:file containing URLs:_files' \
|
||||
'--input-metalink=[download files covered in local Metalink file]:file:_files' \
|
||||
'(--force-html -F)'{--force-html,-F}'[treat input file as html]' \
|
||||
'(--base -B)'{--base=,-B+}'[prepend URL to relative links]:base URL:_urls' \
|
||||
'--config=[specify config file]:config file:_files' \
|
||||
|
|
@ -57,7 +58,11 @@ _arguments -C -s \
|
|||
'--local-encoding=[specify local encoding for IRIs]:encoding' \
|
||||
'--remote-encoding=[specify default remote encoding]:encoding' \
|
||||
'--unlink[remove file before clobber]' \
|
||||
'--no-xattr[turn off storage of metadata in extended file attributes]' \
|
||||
'--keep-badhash[Keep files with checksum mismatch (append .badhash)]' \
|
||||
'--metalink-index=[metalink application/metalink4+xml metaurl ordinal]:number' \
|
||||
'--metalink-over-http[use Metalink metadata from HTTP response headers]' \
|
||||
'--preferred-location[preferred location for Metalink resources]' \
|
||||
'--xattr[turn on storage of metadata in extended file attributes]' \
|
||||
'(-nd --no-directories)'{-nd,--no-directories}"[don't create directories]" \
|
||||
'(--force-directories -x)'{--force-directories,-x}'[force creation of directories]' \
|
||||
'(-nH --no-host-directories)'{-nH,--no-host-directories}"[don't create host directories]" \
|
||||
|
|
@ -102,7 +107,7 @@ _arguments -C -s \
|
|||
"--ca-directory=[specify dir where hash list of CA's are stored]:directory:_directories" \
|
||||
'--crl-file=[specify file with bundle of CRLs]:file:_files' \
|
||||
'--pinnedpubkey=:file:_files' \
|
||||
'--random-file[specify file with random data for seeding generator]:file:_files' \
|
||||
'!--random-file=:file:_files' \
|
||||
'--egd-file=[specify filename of EGD socket]:file:_files' \
|
||||
'--ciphers=[set the priority string (GnuTLS) or cipher list string (OpenSSL) directly]:string' \
|
||||
'--no-hsts[disable HSTS]' \
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue