xl bash-completion available upstream, but not packaged
Bug #922167 reported by
Todd Deshane
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/
#!/bin/bash
# Copy this file to /etc/bash_
_xl()
{
local IFS=$'\n,'
local cur opts xl
COMPREPLY=()
cur="$
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.