我想将两个文件的比较结果保存到varible中,我使用代码:
test.sh: command substitution: line 3: syntax error near unexpected token `('
test.sh: command substitution: line 3: `comm -3 <(sort ${LOCAL}) <(sort ${REMOTE})'
我可以在Shell中运行每一行但如果我将其保存为脚本,则会显示错误:
bash ./test.sh
解决了它: 使用
运行代码{{1}}
作为Bash script process substitution Syntax error: "(" unexpected
中的答案