📜  shell 脚本中的 if 语句 - Shell-Bash 代码示例

📅  最后修改于: 2022-03-11 14:50:11.548000             🧑  作者: Mango

代码示例2
if [ "$result" == "1" ]
    then 
      echo "test" >> /home/samurai/test.txt
    fi
    

    
    if [[ "$result" -eq "1" ]]
    then 
      echo "test" >> /home/samurai/test.txt
    fi