mirror of
https://github.com/Estom/notes.git
synced 2026-02-03 18:44:19 +08:00
11 lines
119 B
Bash
11 lines
119 B
Bash
#!/bin/bash
|
|
a=yinkanglong
|
|
b=hello
|
|
echo a=$a
|
|
echo b=$b
|
|
if [ $a == $b ]
|
|
then
|
|
echo 'a等于b'
|
|
else
|
|
echo 'a不等于b'
|
|
fi |