在以下两个bash评估中有什么区别(如果有的话):
if [[ -s $file1 && $file1 -nt $file2 ]]; then if [[ -s $file1 ]] && [[ $file1 -nt $file2 ]]; then
bash
bash ×1