RosettaCodeData/Task/Conditional-structures/UNIX-Shell/conditional-structures-2.sh

7 lines
142 B
Bash
Raw Permalink Normal View History

2024-03-06 22:25:12 -08:00
if test 4 -ge 6
then echo '4 is greater than or equal to 6'
elif test 4 -lt 6
then echo '4 is less than 6'
else echo '4 compares not to 6'
2023-07-01 11:58:00 -04:00
fi