gpt4 book ai didi

shell - 使用运算符 j 操作 zsh 数组

转载 作者:行者123 更新时间:2023-12-01 19:28:54 25 4
gpt4 key购买 nike

以下代码取自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 编程结构?

最佳答案

这是连接数组元素的参数扩展标志。请参阅(j:...:) Flag .

在这种特定情况下,它使用 / 作为分隔符来连接数组中的元素。例如

zsh% foo=(1 2 3)    
zsh% echo $foo
1 2 3
zsh% echo ${(j:/:)foo}
1/2/3

关于shell - 使用运算符 j 操作 zsh 数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10796371/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com