From c14aa99ef6c7514cae2aebaa2cbdd630cd1b7961 Mon Sep 17 00:00:00 2001 From: Junegunn Choi Date: Mon, 11 May 2015 16:59:44 +0900 Subject: [zsh/bash-completion] Avoid caret expansion Close #233 setopt extendedglob on zsh caused caret in grep pattern to be expanded. Problem identified and patch submitted by @lazywei. --- shell/completion.bash | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'shell/completion.bash') diff --git a/shell/completion.bash b/shell/completion.bash index 49781c0e..ac8198e9 100644 --- a/shell/completion.bash +++ b/shell/completion.bash @@ -189,7 +189,7 @@ EOF _fzf_ssh_completion() { _fzf_list_completion '+m' "$@" << "EOF" - cat <(cat ~/.ssh/config /etc/ssh/ssh_config 2> /dev/null | \grep -i ^host | \grep -v '*') <(\grep -v '^\s*\(#\|$\)' /etc/hosts | \grep -Fv '0.0.0.0') | awk '{if (length($2) > 0) {print $2}}' | sort -u + cat <(cat ~/.ssh/config /etc/ssh/ssh_config 2> /dev/null | \grep -i '^host' | \grep -v '*') <(\grep -v '^\s*\(#\|$\)' /etc/hosts | \grep -Fv '0.0.0.0') | awk '{if (length($2) > 0) {print $2}}' | sort -u EOF } -- cgit v1.2.3