aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--tools/perf/bash_completion2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/perf/bash_completion b/tools/perf/bash_completion
index 50540cfe3d18..b0cdd12bd5e4 100644
--- a/tools/perf/bash_completion
+++ b/tools/perf/bash_completion
@@ -11,7 +11,7 @@ __ltrim_colon_completions()
11{ 11{
12 if [[ "$1" == *:* && "$COMP_WORDBREAKS" == *:* ]]; then 12 if [[ "$1" == *:* && "$COMP_WORDBREAKS" == *:* ]]; then
13 # Remove colon-word prefix from COMPREPLY items 13 # Remove colon-word prefix from COMPREPLY items
14 local colon_word=${1%${1##*:}} 14 local colon_word=${1%"${1##*:}"}
15 local i=${#COMPREPLY[*]} 15 local i=${#COMPREPLY[*]}
16 while [[ $((--i)) -ge 0 ]]; do 16 while [[ $((--i)) -ge 0 ]]; do
17 COMPREPLY[$i]=${COMPREPLY[$i]#"$colon_word"} 17 COMPREPLY[$i]=${COMPREPLY[$i]#"$colon_word"}