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.
11 lines
185 B
11 lines
185 B
2 years ago
|
if [ "$X" -gt 5 ]; then
|
||
|
echo "X is greater than 5"
|
||
|
else
|
||
|
echo "X is less than 5"
|
||
|
fi
|
||
|
if [ "$Y" -lt 20 ]; then
|
||
|
echo "Y is less than 20"
|
||
|
else
|
||
|
echo "Y is greater than 20"
|
||
|
fi
|