我使用以下脚本与文件夹进行比较:
if diff "/home/folder1/" "/home/folder2/" &> /dev/null ; then
echo "Files in the two folders are the same"
else
echo "Files in the two folders are NOT the same"
fi
有没有一种简单的方法来解释“&> /dev/null”实际上是做什么的,它是否返回一个布尔值 true/false?
我的主要问题是:相反的情况是什么?我的意思是,假设我希望“if diff”问题是“两个文件夹的内容不一样吗?”