MIT-Curricular/OS/C/practice/test.sh
2025-03-21 08:25:59 +05:30

8 lines
198 B
Bash
Executable file

read -p "Enter a number: " num
if [[ $num -gt 10 ]]; then
echo "Number is greater than 10"
elif [[ $num -eq 10 ]]; then
echo "Number is exactly 10"
else
echo "Number is less than 10"
fi