summaryrefslogtreecommitdiffstats
path: root/shell-completion/colrm
diff options
context:
space:
mode:
authorSami Kerola2013-03-26 20:40:20 +0100
committerSami Kerola2013-04-01 18:41:55 +0200
commitc72fca2cedfb2ab206847efa43d798f6484872de (patch)
tree030b41c8cbb079458107fc0f52a4fc93a7e10fdf /shell-completion/colrm
parentbash-completion: term-utils (diff)
downloadkernel-qcow2-util-linux-c72fca2cedfb2ab206847efa43d798f6484872de.tar.gz
kernel-qcow2-util-linux-c72fca2cedfb2ab206847efa43d798f6484872de.tar.xz
kernel-qcow2-util-linux-c72fca2cedfb2ab206847efa43d798f6484872de.zip
bash-completion: text-utils
Signed-off-by: Sami Kerola <kerolasa@iki.fi>
Diffstat (limited to 'shell-completion/colrm')
-rw-r--r--shell-completion/colrm23
1 files changed, 23 insertions, 0 deletions
diff --git a/shell-completion/colrm b/shell-completion/colrm
new file mode 100644
index 000000000..aa57c02ab
--- /dev/null
+++ b/shell-completion/colrm
@@ -0,0 +1,23 @@
+_colrm_module()
+{
+ local cur OPTS
+ COMPREPLY=()
+ cur="${COMP_WORDS[COMP_CWORD]}"
+ case $cur in
+ -*)
+ OPTS="-V --version -h --help"
+ COMPREPLY=( $(compgen -W "${OPTS[*]}" -- $cur) )
+ return 0
+ ;;
+ esac
+ case $COMP_CWORD in
+ 1)
+ COMPREPLY=( $(compgen -W "startcol" -- $cur) )
+ ;;
+ 2)
+ COMPREPLY=( $(compgen -W "endcol" -- $cur) )
+ ;;
+ esac
+ return 0
+}
+complete -F _colrm_module colrm