You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
|
|
|
if [ "$1" -gt "$2" ]; then
|
|
|
|
echo "$1 > $2"
|
|
|
|
elif [ "$1" -lt "$2" ]; then
|
|
|
|
echo "$1 < $2"
|
|
|
|
else
|
|
|
|
echo "$1 = $2"
|
|
|
|
fi
|