Drop -m from --in etc completion getters.

http://lists.alioth.debian.org/pipermail/bash-completion-devel/2010-January/002453.html
This commit is contained in:
Ville Skyttä 2010-01-16 11:33:18 +02:00
parent e8f6edc5af
commit 7a4e09a6ac

View File

@ -14,7 +14,8 @@ _ipv6calc()
return 0 return 0
;; ;;
-I|--in|-O|--out|-A|--action) -I|--in|-O|--out|-A|--action)
COMPREPLY=( $( compgen -W "$( ipv6calc -m "$prev" -h 2>&1 | \ # With ipv6calc < 0.73.0, -m does nothing here, so use sed instead.
COMPREPLY=( $( compgen -W "$( ipv6calc "$prev" -h 2>&1 | \
sed -ne 's/^[[:space:]]\{1,\}\([^[:space:]:]\{1,\}\)[[:space:]]*:.*/\1/p' )" \ sed -ne 's/^[[:space:]]\{1,\}\([^[:space:]:]\{1,\}\)[[:space:]]*:.*/\1/p' )" \
-- "$cur" ) ) -- "$cur" ) )
return 0 return 0