mirror of
https://github.com/fsquillace/junest.git
synced 2026-01-23 18:45:53 +00:00
11 lines
130 B
Bash
11 lines
130 B
Bash
function is_equal(){
|
|
if [ "$1" == "$2" ]
|
|
then
|
|
return 0
|
|
else
|
|
echo "$1!=$2"
|
|
return 1
|
|
fi
|
|
}
|
|
|
|
|