summaryrefslogtreecommitdiffstats
path: root/bash-completion/column
diff options
context:
space:
mode:
Diffstat (limited to 'bash-completion/column')
-rw-r--r--bash-completion/column34
1 files changed, 34 insertions, 0 deletions
diff --git a/bash-completion/column b/bash-completion/column
new file mode 100644
index 000000000..94e1a5117
--- /dev/null
+++ b/bash-completion/column
@@ -0,0 +1,34 @@
+_column_module()
+{
+ local cur prev OPTS
+ COMPREPLY=()
+ cur="${COMP_WORDS[COMP_CWORD]}"
+ prev="${COMP_WORDS[COMP_CWORD-1]}"
+ case $prev in
+ '-c'|'--columns')
+ COMPREPLY=( $(compgen -W "number" -- $cur) )
+ return 0
+ ;;
+ '-s'|'--separator'|'-o'|'--output-separator')
+ COMPREPLY=( $(compgen -W "string" -- $cur) )
+ return 0
+ ;;
+ esac
+ case $cur in
+ -*)
+ OPTS="-c --columns
+ -t --table
+ -s --separator
+ -o --output-separator
+ -x --fillrows
+ -h --help
+ -V --version"
+ COMPREPLY=( $(compgen -W "${OPTS[*]}" -- $cur) )
+ return 0
+ ;;
+ esac
+ compopt -o filenames
+ COMPREPLY=( $(compgen -f -- $cur) )
+ return 0
+}
+complete -F _column_module column