source: trunk/secdapt/secdapt.bash_completion @ 441

Last change on this file since 441 was 430, checked in by g7moreau, 4 years ago
  • Add subproject secdapt
File size: 271 bytes
Line 
1# bash completion for secdapt
2
3have secdapt &&
4_secdapt() {
5   local cur prev
6
7   COMPREPLY=()
8
9   COMPREPLY=($(compgen -W "$($(which secdapt||echo /usr/bin/secdapt) help|grep '^ secdapt'|awk '{print $2}'|xargs echo -n)" -- "$cur"))
10
11   } && complete -F _secdapt secdapt
Note: See TracBrowser for help on using the repository browser.