summaryrefslogtreecommitdiffstats
path: root/shell-completion/fdformat
diff options
context:
space:
mode:
authorSami Kerola2013-03-23 00:37:11 +0100
committerSami Kerola2013-04-01 17:08:02 +0200
commitbf60993cf2442f67bd47bcfcf6bd49c7392c2ba1 (patch)
tree9e45987bc2b0b429e042baa3cd714ea773e6b3b9 /shell-completion/fdformat
parentbash-completion: add bash completetion configure option (diff)
downloadkernel-qcow2-util-linux-bf60993cf2442f67bd47bcfcf6bd49c7392c2ba1.tar.gz
kernel-qcow2-util-linux-bf60993cf2442f67bd47bcfcf6bd49c7392c2ba1.tar.xz
kernel-qcow2-util-linux-bf60993cf2442f67bd47bcfcf6bd49c7392c2ba1.zip
bash-completion: disk-utils
Signed-off-by: Sami Kerola <kerolasa@iki.fi>
Diffstat (limited to 'shell-completion/fdformat')
-rw-r--r--shell-completion/fdformat11
1 files changed, 11 insertions, 0 deletions
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