diff options
| author | Karel Zak <kzak@redhat.com> | 2025-12-04 18:41:44 +0100 |
|---|---|---|
| committer | Karel Zak <kzak@redhat.com> | 2025-12-04 18:41:44 +0100 |
| commit | b650e692702bda91d2b6ff4a27329f2ea087274f (patch) | |
| tree | 3b0664e159ea589361b20938b69430f4f1534c13 /bash-completion | |
| parent | 5756e7ba8aba220177099188c3d120e111199fa9 (diff) | |
| parent | bc577050f952b3ea0603c6ca8a4354950b330402 (diff) | |
| download | util-linux-b650e692702bda91d2b6ff4a27329f2ea087274f.tar.gz | |
Merge branch 'PR/column-input-separator-alias' of https://github.com/karelzak/util-linux-workHEADmaster
* 'PR/column-input-separator-alias' of https://github.com/karelzak/util-linux-work:
column: add --input-separator as an alias for --separator
Diffstat (limited to 'bash-completion')
| -rw-r--r-- | bash-completion/column | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/bash-completion/column b/bash-completion/column index 08d0772200..eea03f35d4 100644 --- a/bash-completion/column +++ b/bash-completion/column @@ -13,7 +13,7 @@ _column_module() COMPREPLY=( $(compgen -W "auto never always" -- $cur) ) return 0 ;; - '-s'|'--separator'|'-o'|'--output-separator'|'-n'|'--table-name'|'-O') + '-s'|'--separator'|'--input-separator'|'-o'|'--output-separator'|'-n'|'--table-name'|'-O') COMPREPLY=( $(compgen -W "string" -- $cur) ) return 0 ;; @@ -54,6 +54,7 @@ _column_module() --tree-parent --output-width --separator + --input-separator --output-separator --wrap-separator --fillrows |
