bash

generate bash autocompletion script

bash

generate bash autocompletion script

Name

dataformat completion bash - generate bash autocompletion script

Synopsis

dataformat completion bash [flags]

Description

Steps to setup command-line completion for bash:

  1. Ensure you have bash-completion installed on your system

  2. Execute once:

    dataformat completion bash > ~/.bash_completion.d/ncbi-dataformat.bash
    
  3. Create/edit the file ~/.bash_completion, adding the following:

    for f in ~/.bash_completion.d/* ; do
        . $f
        [[ -f "$f" ]] && source "$f"
    done
    

Depending on your setup, you may need to source ~/.bash_completion

Options

  -h, --help   help for bash
Generated May 3, 2024