From c72fca2cedfb2ab206847efa43d798f6484872de Mon Sep 17 00:00:00 2001 From: Sami Kerola Date: Tue, 26 Mar 2013 19:40:20 +0000 Subject: bash-completion: text-utils Signed-off-by: Sami Kerola --- shell-completion/col | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 shell-completion/col (limited to 'shell-completion/col') diff --git a/shell-completion/col b/shell-completion/col new file mode 100644 index 000000000..9ad3a6732 --- /dev/null +++ b/shell-completion/col @@ -0,0 +1,24 @@ +_col_module() +{ + local cur prev OPTS + COMPREPLY=() + cur="${COMP_WORDS[COMP_CWORD]}" + prev="${COMP_WORDS[COMP_CWORD-1]}" + case $prev in + '-l'|'--lines') + COMPREPLY=( $(compgen -W "number" -- $cur) ) + return 0 + ;; + esac + OPTS="-b --no-backspaces + -f --fine + -p --pass + -h --tabs + -x --spaces + -l --lines + -V --version + -H --help" + COMPREPLY=( $(compgen -W "${OPTS[*]}" -- $cur) ) + return 0 +} +complete -F _col_module col -- cgit v1.2.3-55-g7522