]> Git Repo - VerusCoin.git/blob - contrib/zcash-tx.bash-completion
Auto merge of #3901 - rex4539:electric-coin-company, r=str4d
[VerusCoin.git] / contrib / zcash-tx.bash-completion
1 # bash programmable completion for zcash-tx(1)
2 # Copyright (c) 2016 The Bitcoin Core developers
3 # Distributed under the MIT software license, see the accompanying
4 # file COPYING or http://www.opensource.org/licenses/mit-license.php.
5
6 _zcash_tx() {
7     local cur prev words=() cword
8     local zcash_tx
9
10     # save and use original argument to invoke zcash-tx for -help
11     # it might not be in $PATH
12     zcash_tx="$1"
13
14     COMPREPLY=()
15     _get_comp_words_by_ref -n =: cur prev words cword
16
17     case "$cur" in
18         load=*:*)
19             cur="${cur#load=*:}"
20             _filedir
21             return 0
22             ;;
23         *=*)    # prevent attempts to complete other arguments
24             return 0
25             ;;
26     esac
27
28     if [[ "$cword" == 1 || ( "$prev" != "-create" && "$prev" == -* ) ]]; then
29         # only options (or an uncompletable hex-string) allowed
30         # parse zcash-tx -help for options
31         local helpopts
32         helpopts=$($zcash_tx -help | sed -e '/^  -/ p' -e d )
33         COMPREPLY=( $( compgen -W "$helpopts" -- "$cur" ) )
34     else
35         # only commands are allowed
36         # parse -help for commands
37         local helpcmds
38         helpcmds=$($zcash_tx -help | sed -e '1,/Commands:/d' -e 's/=.*/=/' -e '/^  [a-z]/ p' -e d )
39         COMPREPLY=( $( compgen -W "$helpcmds" -- "$cur" ) )
40     fi
41
42     # Prevent space if an argument is desired
43     if [[ $COMPREPLY == *= ]]; then
44         compopt -o nospace
45     fi
46
47     return 0
48 } &&
49 complete -F _zcash_tx zcash-tx
50
51 # Local variables:
52 # mode: shell-script
53 # sh-basic-offset: 4
54 # sh-indent-comment: t
55 # indent-tabs-mode: nil
56 # End:
57 # ex: ts=4 sw=4 et filetype=sh
This page took 0.024774 seconds and 4 git commands to generate.