我无法理解 zsh 5.9 将
$!
unset a b c sleep 3 & a=$! b[1]=$! c[1]=${!} typeset -p a b c
输出:
typeset a=21391 typeset -a b=( '$!' ) typeset -a c=( 21391 )
得到
b=( '$!' )
问题已在提交中修复5977d3c