シェルスクリプト 論理積(&&) AかつBのサンプル
環境
# cat /etc/redhat-release
AlmaLinux release 8.7 (Stone Smilodon)
構文
if [左の条件式] && [右の条件式]
左の式と右の式が両方ともtrueの場合、trueになります。それ以外はfalseです。
使用例
#!/bin/bash a=8 if [ $a -eq 8 ] && [ $a -lt 10 ]; then echo "true" # true fi
実行結果
# sh 22.sh
true