#!/bin/bash a=yinkanglong b=hello echo a=$a echo b=$b if [ $a == $b ] then echo 'a等于b' else echo 'a不等于b' fi