From 7a4e09a6ac294c32bc91e119e708243945024633 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ville=20Skytt=C3=A4?= Date: Sat, 16 Jan 2010 11:33:18 +0200 Subject: [PATCH] Drop -m from --in etc completion getters. http://lists.alioth.debian.org/pipermail/bash-completion-devel/2010-January/002453.html --- contrib/ipv6calc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/contrib/ipv6calc b/contrib/ipv6calc index 142e19ec..dca4c144 100644 --- a/contrib/ipv6calc +++ b/contrib/ipv6calc @@ -14,7 +14,8 @@ _ipv6calc() return 0 ;; -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' )" \ -- "$cur" ) ) return 0