* [PATCH]xl:Add basic bash completion for xl command
@ 2010-04-27 3:39 Yang Hongyang
2010-04-27 7:24 ` [PATCH v2]xl:Add " Yang Hongyang
0 siblings, 1 reply; 3+ messages in thread
From: Yang Hongyang @ 2010-04-27 3:39 UTC (permalink / raw)
To: xen-devel
Add basic bash completion for xl command.
Signed-off-by: Yang Hongyang <yanghy@cn.fujitsu.com>
diff -r c87ec146229a Config.mk
--- a/Config.mk Fri Apr 23 15:04:26 2010 +0100
+++ b/Config.mk Tue Apr 27 19:32:02 2010 +0800
@@ -19,6 +19,7 @@
DISTDIR ?= $(XEN_ROOT)/dist
DESTDIR ?= /
+BASH_COMPLETION_DIR ?= /etc/profile.d
# Allow phony attribute to be listed as dependency rather than fake target
.PHONY: .phony
diff -r c87ec146229a tools/libxl/Makefile
--- a/tools/libxl/Makefile Fri Apr 23 15:04:26 2010 +0100
+++ b/tools/libxl/Makefile Tue Apr 27 19:32:02 2010 +0800
@@ -85,6 +85,7 @@
ln -sf libxlutil.so.$(XLUMAJOR) $(DESTDIR)$(LIBDIR)/libxlutil.so
$(INSTALL_DATA) libxlutil.a $(DESTDIR)$(LIBDIR)
$(INSTALL_DATA) libxl.h $(DESTDIR)$(INCLUDEDIR)
+ $(INSTALL_DATA) bash-completion $(BASH_COMPLETION_DIR)/xl.sh
.PHONY: clean
clean:
diff -r c87ec146229a tools/libxl/bash-completion
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/tools/libxl/bash-completion Tue Apr 27 19:32:02 2010 +0800
@@ -0,0 +1,17 @@
+#!/bin/bash
+# Copy this file to /etc/profile.d/xl.sh
+
+_xl()
+{
+ local cur opts xl
+ COMPREPLY=()
+ cur="${COMP_WORDS[COMP_CWORD]}"
+ xl=xl
+
+ if [[ $COMP_CWORD == 1 ]] ; then
+ opts=`${xl} help 2>/dev/null | sed 'n;d' | sed '1,2d' | awk '{print $1}' | sed 's/$/ ,/g'` && COMPREPLY=( $(compgen -W "${opts}" -- ${cur}) )
+ return 0
+ fi
+}
+
+complete -F _xl -o nospace xl
--
Regards
Yang Hongyang
^ permalink raw reply [flat|nested] 3+ messages in thread* Re: [PATCH v2]xl:Add basic bash completion for xl command
2010-04-27 3:39 [PATCH]xl:Add basic bash completion for xl command Yang Hongyang
@ 2010-04-27 7:24 ` Yang Hongyang
2010-04-27 8:41 ` [PATCH v3]xl:Add " Yang Hongyang
0 siblings, 1 reply; 3+ messages in thread
From: Yang Hongyang @ 2010-04-27 7:24 UTC (permalink / raw)
To: xen-devel
Add basic bash completion for xl command.
Signed-off-by: Yang Hongyang <yanghy@cn.fujitsu.com>
diff -r c87ec146229a Config.mk
--- a/Config.mk Fri Apr 23 15:04:26 2010 +0100
+++ b/Config.mk Tue Apr 27 23:24:23 2010 +0800
@@ -19,6 +19,7 @@
DISTDIR ?= $(XEN_ROOT)/dist
DESTDIR ?= /
+BASH_COMPLETION_DIR ?= /etc/profile.d
# Allow phony attribute to be listed as dependency rather than fake target
.PHONY: .phony
diff -r c87ec146229a tools/libxl/Makefile
--- a/tools/libxl/Makefile Fri Apr 23 15:04:26 2010 +0100
+++ b/tools/libxl/Makefile Tue Apr 27 23:24:23 2010 +0800
@@ -85,6 +85,7 @@
ln -sf libxlutil.so.$(XLUMAJOR) $(DESTDIR)$(LIBDIR)/libxlutil.so
$(INSTALL_DATA) libxlutil.a $(DESTDIR)$(LIBDIR)
$(INSTALL_DATA) libxl.h $(DESTDIR)$(INCLUDEDIR)
+ $(INSTALL_DATA) bash-completion $(BASH_COMPLETION_DIR)/xl.sh
.PHONY: clean
clean:
diff -r c87ec146229a tools/libxl/bash-completion
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/tools/libxl/bash-completion Tue Apr 27 23:24:23 2010 +0800
@@ -0,0 +1,19 @@
+#!/bin/bash
+# Copy this file to /etc/profile.d/xl.sh
+
+_xl()
+{
+ local IFS=$'\n,'
+
+ local cur opts xl
+ COMPREPLY=()
+ cur="${COMP_WORDS[COMP_CWORD]}"
+ xl=xl
+
+ if [[ $COMP_CWORD == 1 ]] ; then
+ opts=`${xl} help 2>/dev/null | sed 'n;d' | sed '1,2d' | awk '{print $1}' | sed 's/$/ ,/g'` && COMPREPLY=( $(compgen -W "${opts}" -- ${cur}) )
+ return 0
+ fi
+}
+
+complete -F _xl -o nospace xl
--
Regards
Yang Hongyang
^ permalink raw reply [flat|nested] 3+ messages in thread* Re: [PATCH v3]xl:Add basic bash completion for xl command
2010-04-27 7:24 ` [PATCH v2]xl:Add " Yang Hongyang
@ 2010-04-27 8:41 ` Yang Hongyang
0 siblings, 0 replies; 3+ messages in thread
From: Yang Hongyang @ 2010-04-27 8:41 UTC (permalink / raw)
To: xen-devel
v2->v3
If no matchs found,fallback to default completion.
====================================================================
Add basic bash completion for xl command.
Signed-off-by: Yang Hongyang <yanghy@cn.fujitsu.com>
diff -r c87ec146229a Config.mk
--- a/Config.mk Fri Apr 23 15:04:26 2010 +0100
+++ b/Config.mk Wed Apr 28 00:37:02 2010 +0800
@@ -19,6 +19,7 @@
DISTDIR ?= $(XEN_ROOT)/dist
DESTDIR ?= /
+BASH_COMPLETION_DIR ?= /etc/profile.d
# Allow phony attribute to be listed as dependency rather than fake target
.PHONY: .phony
diff -r c87ec146229a tools/libxl/Makefile
--- a/tools/libxl/Makefile Fri Apr 23 15:04:26 2010 +0100
+++ b/tools/libxl/Makefile Wed Apr 28 00:37:02 2010 +0800
@@ -85,6 +85,7 @@
ln -sf libxlutil.so.$(XLUMAJOR) $(DESTDIR)$(LIBDIR)/libxlutil.so
$(INSTALL_DATA) libxlutil.a $(DESTDIR)$(LIBDIR)
$(INSTALL_DATA) libxl.h $(DESTDIR)$(INCLUDEDIR)
+ $(INSTALL_DATA) bash-completion $(BASH_COMPLETION_DIR)/xl.sh
.PHONY: clean
clean:
diff -r c87ec146229a tools/libxl/bash-completion
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/tools/libxl/bash-completion Wed Apr 28 00:37:02 2010 +0800
@@ -0,0 +1,21 @@
+#!/bin/bash
+# Copy this file to /etc/profile.d/xl.sh
+
+_xl()
+{
+ local IFS=$'\n,'
+
+ local cur opts xl
+ COMPREPLY=()
+ cur="${COMP_WORDS[COMP_CWORD]}"
+ xl=xl
+
+ if [[ $COMP_CWORD == 1 ]] ; then
+ opts=`${xl} help 2>/dev/null | sed 'n;d' | sed '1,2d' | awk '{print $1}' | sed 's/$/ ,/g'` && COMPREPLY=( $(compgen -W "${opts}" -- ${cur}) )
+ return 0
+ fi
+
+ return 0
+}
+
+complete -F _xl -o nospace -o default xl
--
Regards
Yang Hongyang
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2010-04-27 8:41 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-04-27 3:39 [PATCH]xl:Add basic bash completion for xl command Yang Hongyang
2010-04-27 7:24 ` [PATCH v2]xl:Add " Yang Hongyang
2010-04-27 8:41 ` [PATCH v3]xl:Add " Yang Hongyang
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).