diff options
author | Karel Zak | 2013-04-05 14:58:07 +0200 |
---|---|---|
committer | Karel Zak | 2013-04-05 14:58:07 +0200 |
commit | 20da58084a68b118b15fa01228192463b61fa28f (patch) | |
tree | 07beea113d5a68749264ad59e4d17fbc4bf9fe1d /bash-completion/fdisk | |
parent | Merge branch 'shell-completion' of git://github.com/kerolasa/lelux-utiliteetit (diff) | |
download | kernel-qcow2-util-linux-20da58084a68b118b15fa01228192463b61fa28f.tar.gz kernel-qcow2-util-linux-20da58084a68b118b15fa01228192463b61fa28f.tar.xz kernel-qcow2-util-linux-20da58084a68b118b15fa01228192463b61fa28f.zip |
bash-completion: rename shell-completion -> bash-completion
Signed-off-by: Karel Zak <kzak@redhat.com>
Diffstat (limited to 'bash-completion/fdisk')
-rw-r--r-- | bash-completion/fdisk | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/bash-completion/fdisk b/bash-completion/fdisk new file mode 100644 index 000000000..ae94f10c6 --- /dev/null +++ b/bash-completion/fdisk @@ -0,0 +1,47 @@ +_fdisk_module() +{ + local cur prev OPTS + COMPREPLY=() + cur="${COMP_WORDS[COMP_CWORD]}" + prev="${COMP_WORDS[COMP_CWORD-1]}" + case $prev in + '-s') + local DEV TYPE DEVICES='' + while read DEV TYPE; do + [ $TYPE = 'part' ] && DEVICES+="$DEV " + done < <(lsblk -pnro name,type) + COMPREPLY=( $(compgen -W "$DEVICES" -- $cur) ) + return 0 + ;; + '-b') + COMPREPLY=( $(compgen -W "512 1024 2048 4096" -- $cur) ) + return 0 + ;; + '-c') + COMPREPLY=( $(compgen -W "dos nondos" -- $cur) ) + return 0 + ;; + '-u') + COMPREPLY=( $(compgen -W "cylinders sectors" -- $cur) ) + return 0 + ;; + '-C'|'-H'|'-S') + COMPREPLY=( $(compgen -W "number" -- $cur) ) + return 0 + ;; + esac + case $cur in + -*) + OPTS="-l -s -b -c -h -u -v -C -H -S" + COMPREPLY=( $(compgen -W "${OPTS[*]}" -- $cur) ) + return 0 + ;; + esac + local DEV TYPE DEVICES='' + while read DEV TYPE; do + [ $TYPE = 'disk' ] && DEVICES+="$DEV " + done < <(lsblk -pnro name,type) + COMPREPLY=( $(compgen -W "$DEVICES" -- $cur) ) + return 0 +} +complete -F _fdisk_module fdisk |