以下代码取自here:
function +vi-git-st() {
local ahead behind remote
local -a gitstatus
# Are we on a remote-tracking branch?
remote=${$(git rev-parse --verify ${hook_com[branch]}@{upstream} \
--symbolic-full-name 2>/dev/null)/refs\/remotes\/}
if [[ -n ${remote} ]] ; then
# for git prior to 1.7
# ahead=$(git rev-list origin/${hook_com[branch]}..HEAD | wc -l)
ahead=$(git rev-list ${hook_com[branch]}@{upstream}..HEAD 2>/dev/null | wc -l)
(( $ahead )) && gitstatus+=( "${c3}+${ahead}${c2}" )
# for git prior to 1.7
# behind=$(git rev-list HEAD..origin/${hook_com[branch]} | wc -l)
behind=$(git rev-list HEAD..${hook_com[branch]}@{upstream} 2>/dev/null | wc -l)
(( $behind )) && gitstatus+=( "${c4}-${behind}${c2}" )
hook_com[branch]="${hook_com[branch]} [${remote} ${(j:/:)gitstatus}]"
fi
}
我不明白最后一行。变量gitstatus
是一个数组,那么${(j:/:)gitstatus}
应该做什么?我知道它输出字符串first_array_element/second_array_element
但我没有设法找到有关运算符j
的任何文档。这是一些特定的zsh功能,还是标准的shell编程构造?
答案 0 :(得分:16)
这是连接数组元素的参数扩展标志。请参阅(j:...:) Flag。
在该特定情况下,它使用/
作为分隔符连接数组中的元素。 E.g。
zsh% foo=(1 2 3)
zsh% echo $foo
1 2 3
zsh% echo ${(j:/:)foo}
1/2/3