summaryrefslogtreecommitdiff
path: root/bash_completion
diff options
context:
space:
mode:
authorRĂ©mi Vanicat <vanicat@debian.org>2007-11-14 21:16:16 +0100
committerJoey Hess <joey@kodama.kitenet.net>2007-11-15 12:00:18 -0500
commit58c676256a6b4a4b9fef5d2448fae66591ac2d1f (patch)
treead91f35a2770245802c60441f4695a1718d1d786 /bash_completion
parentafeffeab88963e8b0f04407c6935926fcd2f8137 (diff)
Add bash completion to etckeeper
Diffstat (limited to 'bash_completion')
-rw-r--r--bash_completion8
1 files changed, 8 insertions, 0 deletions
diff --git a/bash_completion b/bash_completion
new file mode 100644
index 0000000..372b76b
--- /dev/null
+++ b/bash_completion
@@ -0,0 +1,8 @@
+_etckeeper() {
+ local cur;
+ COMPREPLY=();
+ cur=${COMP_WORDS[COMP_CWORD]};
+ COMPREPLY=( $( compgen -W '$(cd /etc/etckeeper/; for i in *.d/; do echo ${i%.d/}; done)' -- $cur ) );
+}
+
+complete -F _etckeeper etckeeper \ No newline at end of file