2022-10-06 1.语法if..then..else..fi的语法: 123456789101112131415#!/bin/bashif [ 条件语句 ];then # 推荐书写方式 执行内容else 执行内容2fi# 或if [ 条件语句 ]then 执行内容else 执行内容2fi 2.案例1.if..then..else..fi的案例,比较两个值是否相等。 12345678#!/bin/sha=10b=20if [ $a == $b ];then echo "a is equal to b"else echo "a is not equal to b"fi