mirror of https://github.com/01-edu/public.git
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.
13 lines
371 B
13 lines
371 B
#!/usr/bin/env bash |
|
|
|
if [ "$#" -ne 2 ]; then |
|
echo "Error: The script only works with two arguments!" |
|
elif ! [[ $1 =~ ^-?[0-9]*\.?[0-9]+$ ]] || ! [[ $2 =~ ^-?[0-9]*\.?[0-9]+$ ]]; then |
|
echo "Error: Only two numeric arguments are acceptable!" |
|
elif [ "$1" -gt "$2" ]; then |
|
echo "$1 > $2" |
|
elif [ "$1" -lt "$2" ]; then |
|
echo "$1 < $2" |
|
else |
|
echo "$1 = $2" |
|
fi
|
|
|