We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3c2cac0 commit 3201497Copy full SHA for 3201497
completions/brctl
@@ -2,8 +2,10 @@
2
3
_comp_cmd_brctl__interfaces()
4
{
5
- _comp_compgen_split -- "$(${1:-brctl} show ${2:+"$2"} 2>/dev/null | _comp_awk \
6
- '(NR == 1) { next }; (/^\t/) { print $1; next }; { print $4 }')"
+ _comp_compgen_split -- "$(
+ "${1:-brctl}" show ${2:+"$2"} 2>/dev/null | _comp_awk \
7
+ '(NR == 1) { next }; (/^\t/) { print $1; next }; { print $4 }'
8
+ )"
9
}
10
11
_comp_cmd_brctl()
0 commit comments