使用shell脚本比较两个文件时出现语法错误

时间:2017-04-18 04:21:48

标签: linux bash shell

我想将两个文件的比较结果保存到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

中的答案

0 个答案:

没有答案