diff options
author | Sami Kerola | 2013-03-26 20:40:20 +0100 |
---|---|---|
committer | Sami Kerola | 2013-04-01 18:41:55 +0200 |
commit | c72fca2cedfb2ab206847efa43d798f6484872de (patch) | |
tree | 030b41c8cbb079458107fc0f52a4fc93a7e10fdf /shell-completion/ul | |
parent | bash-completion: term-utils (diff) | |
download | kernel-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/ul')
-rw-r--r-- | shell-completion/ul | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/shell-completion/ul b/shell-completion/ul new file mode 100644 index 000000000..07d073135 --- /dev/null +++ b/shell-completion/ul @@ -0,0 +1,29 @@ +_ul_module() +{ + local cur prev OPTS + COMPREPLY=() + cur="${COMP_WORDS[COMP_CWORD]}" + prev="${COMP_WORDS[COMP_CWORD-1]}" + case $prev in + '-t'|'--terminal') + local TERM_LIST I + TERM_LIST='' + for I in /usr/share/terminfo/?/*; do + TERM_LIST+="${I##*/} " + done + COMPREPLY=( $(compgen -W "$TERM_LIST" -- $cur) ) + return 0 + ;; + esac + case $cur in + -*) + OPTS="-t --terminal -i --indicated -V --version -h --help" + COMPREPLY=( $(compgen -W "${OPTS[*]}" -- $cur) ) + return 0 + ;; + esac + compopt -o filenames + COMPREPLY=( $(compgen -f -- $cur) ) + return 0 +} +complete -F _ul_module ul |