Apparently, the "\c" confuses sed (v4.1.2). Removing the '\'. Signed-off-by: Brian Moyle <bmoyle@xxxxxxxxx> --- contrib/cg-completion.bash | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/contrib/cg-completion.bash b/contrib/cg-completion.bash index 428f320..4011cce 100644 --- a/contrib/cg-completion.bash +++ b/contrib/cg-completion.bash @@ -23,7 +23,7 @@ __cg_branches() __cg_cmdlist() { - (cg help && cg help tag && cg help branch && cg help admin) | grep --regexp "cg-[^ ]* " | sed 's/^.*\cg-\([^ ]*\) .*$/\1/' | grep -v COMMAND + (cg help && cg help tag && cg help branch && cg help admin) | grep --regexp "cg-[^ ]* " | sed 's/^.*cg-\([^ ]*\) .*$/\1/' | grep -v COMMAND } -- 1.4.4.4 - To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html