浮点型: 既可比较整数,又可比较小数。
1 #!/bin/bash 2 max=6.5 3 min=5 4 5 if [ $(echo "$max > $min" | bc) -eq 1 ]; then 6 echo "1" 7 else 8 echo "0" 9 fi