mirror of
https://github.com/Estom/notes.git
synced 2026-02-03 10:33:35 +08:00
8 lines
70 B
Bash
8 lines
70 B
Bash
#!/bin/bash
|
|
|
|
if [ $a = $b]
|
|
then
|
|
echo 'a=b'
|
|
else
|
|
echo 'a!=b'
|
|
fi |