ct-ng.comp
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Tue Oct 14 19:40:12 2008 +0000 (2008-10-14)
changeset 933 fb5a4a36e0da
parent 925 ac50e4f1360a
child 934 e2f4be0feb9d
permissions -rw-r--r--
Use a function to retrieve a sample directory.

/trunk/samples/samples.mk | 19 9 10 0 +++++++++----------
1 file changed, 9 insertions(+), 10 deletions(-)
     1 # To be sourced
     2 
     3 _ct-ng () {
     4     local cur prev samples show_samples actions steps start_steps stop_steps ct_ng_opts vars
     5     COMPREPLY=()
     6     cur=$(_get_cword)
     7     prev=${COMP_WORDS[COMP_CWORD-1]}
     8 
     9     samples=$(${COMP_WORDS[0]} list-samples 2>/dev/null)
    10     show_samples=$(echo "${samples}" |sed -r -e 's/(^| )/\1show-/g;')
    11 
    12     steps=$(${COMP_WORDS[0]} list-steps 2>/dev/null |awk '$1 == "-" { print $2; }')
    13     start_steps=$(echo "${steps}" |sed -r -e 's/(^| )/\1+/;')
    14     stop_steps=$(echo "${steps}" |sed -r -e 's/(^| )/+\1/;')
    15 
    16     actions='menuconfig oldconfig saveconfig
    17              list-samples build build. list-steps regtest regtest-local
    18              regtest-global clean distclean wiki-samples updatetools
    19              tarball version'
    20 
    21     vars="RESTART= STOP="
    22 
    23     ct_ng_opts="${samples} ${show_samples}
    24                 ${steps} ${start_steps} ${stop_steps}
    25                 ${actions} ${vars}"
    26 
    27     COMPREPLY=($(compgen -W "${ct_ng_opts}" -- "${cur}"))
    28     return 0
    29 }
    30 complete -F _ct-ng ct-ng