From bf60993cf2442f67bd47bcfcf6bd49c7392c2ba1 Mon Sep 17 00:00:00 2001 From: Sami Kerola Date: Fri, 22 Mar 2013 23:37:11 +0000 Subject: bash-completion: disk-utils Signed-off-by: Sami Kerola --- shell-completion/fdformat | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 shell-completion/fdformat (limited to 'shell-completion/fdformat') diff --git a/shell-completion/fdformat b/shell-completion/fdformat new file mode 100644 index 000000000..4ad1c3d05 --- /dev/null +++ b/shell-completion/fdformat @@ -0,0 +1,11 @@ +_fdformat_module() +{ + local cur OPTS + COMPREPLY=() + cur="${COMP_WORDS[COMP_CWORD]}" + DEVS=$(for I in echo /dev/fd*; do if [ -e $I ]; then echo $I; fi; done) + OPTS="-n --no-verify -h --help -V --version $DEVS" + COMPREPLY=( $(compgen -W "${OPTS[*]}" -- $cur) ) + return 0 +} +complete -F _fdformat_module fdformat -- cgit v1.2.3-55-g7522