xl bash-completion available upstream, but not packaged

Bug #922167 reported by Todd Deshane
6
This bug affects 1 person
Affects Status Importance Assigned to Milestone
xen-common (Ubuntu)
New
Undecided
Unassigned

Bug Description

xen-unstable.hg# cat tools/libxl/bash-completion
#!/bin/bash
# Copy this file to /etc/bash_completion.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 '1,4d' | awk '/^ [^ ]/ {print $1}' | sed 's/$/ ,/g'` && COMPREPLY=( $(compgen -W "${opts}" -- ${cur}) )
  return 0
 fi

 return 0
}

complete -F _xl -o nospace -o default xl

To post a comment you must log in.
This report contains Public information  
Everyone can see this information.

Other bug subscribers

Remote bug watches

Bug watches keep track of this bug in other bug trackers.