summaryrefslogtreecommitdiffstats
path: root/bash-completion/col
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-27 13:14:44 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-27 13:14:44 +0000
commit30ff6afe596eddafacf22b1a5b2d1a3d6254ea15 (patch)
tree9b788335f92174baf7ee18f03ca8330b8c19ce2b /bash-completion/col
parentInitial commit. (diff)
downloadutil-linux-upstream.tar.xz
util-linux-upstream.zip
Adding upstream version 2.36.1.upstream/2.36.1upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '')
-rw-r--r--bash-completion/col27
-rw-r--r--bash-completion/colcrt27
-rw-r--r--bash-completion/colrm29
-rw-r--r--bash-completion/column62
4 files changed, 145 insertions, 0 deletions
diff --git a/bash-completion/col b/bash-completion/col
new file mode 100644
index 0000000..cea57b5
--- /dev/null
+++ b/bash-completion/col
@@ -0,0 +1,27 @@
+_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
+ ;;
+ '-H'|'--help'|'-V'|'--version')
+ return 0
+ ;;
+ esac
+ OPTS="--no-backspaces
+ --fine
+ --pass
+ --tabs
+ --spaces
+ --lines
+ --version
+ --help"
+ COMPREPLY=( $(compgen -W "${OPTS[*]}" -- $cur) )
+ return 0
+}
+complete -F _col_module col
diff --git a/bash-completion/colcrt b/bash-completion/colcrt
new file mode 100644
index 0000000..c66d7e6
--- /dev/null
+++ b/bash-completion/colcrt
@@ -0,0 +1,27 @@
+_colcrt_module()
+{
+ local cur prev OPTS
+ COMPREPLY=()
+ cur="${COMP_WORDS[COMP_CWORD]}"
+ prev="${COMP_WORDS[COMP_CWORD-1]}"
+ case $prev in
+ '-h'|'--help'|'-V'|'--version')
+ return 0
+ ;;
+ esac
+ case $cur in
+ -*)
+ OPTS=" --no-underlining
+ --half-lines
+ --version
+ --help"
+ COMPREPLY=( $(compgen -W "${OPTS[*]}" -- $cur) )
+ return 0
+ ;;
+ esac
+ local IFS=$'\n'
+ compopt -o filenames
+ COMPREPLY=( $(compgen -f -- $cur) )
+ return 0
+}
+complete -F _colcrt_module colcrt
diff --git a/bash-completion/colrm b/bash-completion/colrm
new file mode 100644
index 0000000..622dbaa
--- /dev/null
+++ b/bash-completion/colrm
@@ -0,0 +1,29 @@
+_colrm_module()
+{
+ local cur prev OPTS
+ COMPREPLY=()
+ cur="${COMP_WORDS[COMP_CWORD]}"
+ prev="${COMP_WORDS[COMP_CWORD-1]}"
+ case $prev in
+ '-h'|'--help'|'-V'|'--version')
+ return 0
+ ;;
+ esac
+ case $cur in
+ -*)
+ OPTS="--version --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
diff --git a/bash-completion/column b/bash-completion/column
new file mode 100644
index 0000000..c5a998b
--- /dev/null
+++ b/bash-completion/column
@@ -0,0 +1,62 @@
+_column_module()
+{
+ local cur prev OPTS
+ COMPREPLY=()
+ cur="${COMP_WORDS[COMP_CWORD]}"
+ prev="${COMP_WORDS[COMP_CWORD-1]}"
+ case $prev in
+ '-c'|'--output-width')
+ COMPREPLY=( $(compgen -W "number" -- $cur) )
+ return 0
+ ;;
+ '-s'|'--separator'|'-o'|'--output-separator'|'-n'|'--table-name'|'-O')
+ COMPREPLY=( $(compgen -W "string" -- $cur) )
+ return 0
+ ;;
+ '-O'|'--table-order'|'-N'|'--table-columns'|'-E'|'--table-noextreme'|'-H'|'--table-hide'|'-R'|'--table-right'|'-T'|'--table-truncate'|'-W'|'--table-wrap')
+ COMPREPLY=( $(compgen -W "string" -- $cur) )
+ return 0
+ ;;
+ '-r'|'--tree'|'-i'|'--tree-id'|'-p'|'--tree-parent')
+ COMPREPLY=( $(compgen -W "string" -- $cur) )
+ return 0
+ ;;
+ '-h'|'--help'|'-V'|'--version')
+ return 0
+ ;;
+ esac
+ case $cur in
+ -*)
+ OPTS="--columns
+ --table
+ --table-name
+ --table-order
+ --table-columns
+ --table-noextreme
+ --table-noheadings
+ --table-header-repeat
+ --table-hide
+ --table-right
+ --table-truncate
+ --table-wrap
+ --table-empty-lines
+ --json
+ --tree
+ --tree-id
+ --tree-parent
+ --output-width
+ --separator
+ --output-separator
+ --fillrows
+ --help
+ --version"
+ COMPREPLY=( $(compgen -W "${OPTS[*]}" -- $cur) )
+ return 0
+ ;;
+ esac
+ local IFS=$'\n'
+ compopt -o filenames
+ COMPREPLY=( $(compgen -f -- $cur) )
+ return 0
+}
+complete -F _column_module column