Linux:测试表达式

Linux:测试表达式

如何使用test来测试这样的表达式:

if { [ $month -eq 03 ] || [ $month -eq 10 ]; } && [ $weekday = "So" ] && [ $day -gt 24 ]

我需要在一行中测试整个 if 语句。

提前致谢。

相关内容