summaryrefslogtreecommitdiffstats
path: root/bridge/etc
diff options
context:
space:
mode:
authormakefu <github@syntax-fehler.de>2013-12-30 03:03:22 +0100
committermakefu <github@syntax-fehler.de>2013-12-30 03:03:22 +0100
commit96151bd07330aee400fb99fd9f8f117bae42c9e5 (patch)
tree44c3f35a4d89e96ec97812a5879baa30bb4df0b8 /bridge/etc
parent4ae4f5f461a6d5f6290ef7da516ea22db93bfd91 (diff)
bridge -> Cancer/\1
Diffstat (limited to 'bridge/etc')
-rw-r--r--bridge/etc/bash_completion.d/bridge18
1 files changed, 0 insertions, 18 deletions
diff --git a/bridge/etc/bash_completion.d/bridge b/bridge/etc/bash_completion.d/bridge
deleted file mode 100644
index 86d8a4e2..00000000
--- a/bridge/etc/bash_completion.d/bridge
+++ /dev/null
@@ -1,18 +0,0 @@
-#! /bin/bash
-function comp_bridge() {
- local cword="${COMP_WORDS[$COMP_CWORD]}"
- local bindir="$(dirname $(readlink -f "$BASH_SOURCE"))/../../lib/bridge/bin"
- case $COMP_CWORD in
- (1)
- COMPREPLY=( $(cd "$bindir" && ls | grep "^$cword.*") )
- ;;
- (2)
- case "${COMP_WORDS[1]}" in
- (attach|destroy|paste)
- COMPREPLY=( $(bridge list 2>/dev/null | grep "^$cword.*") )
- ;;
- esac
- ;;
- esac
-}
-complete -F comp_bridge bridge