我有这个脚本:
tempfile1="tempInfo1"
tempfile2="tempInfo2"
(otherfunction) $1 > "$tempfile1"
(otherfunction) $2 > "$tempfile2"
if $(cmp "$tempfile1" "$tempfile2")
then
echo "Two files are same"
rm $tempfile1
rm $tempfile2
exit 0
else
echo "Two files are different" >&2
rm $tempfile1
rm $tempfile2
exit 1
fi
我知道了
line 7: tempInfo1: command not found
我不知道我在哪里做错了,这是我的第一个shell脚本,我真的很困惑。还是有什么其他方法可以比较两个文件的内容?