例:
function my_func(){ echo $1;} export -f my_func parallel "my_func {}" ::: 1 2
在bash中输出
1 2
而在zsh中它将输出错误消息
/bin/bash: my_func: command not found /bin/bash: my_func: command not found
相反,您可以依赖于bash函数作为以()开头的常规变量导出的事实:
export my_func='() { echo "$1"; }' parallel --gnu "my_func {}" ::: 1 2