Shell Scripting- Part2
Write an Example of If else in Shell Scripting that takes2 inputs from user and compares them
#!/bin/bash
echo "Enter the first number"
read firstnumber
echo "Enter the second number"
read secondnumber
if [ $firstnumber -gt $secondnumb...
sowmya-mb-techblogs.hashnode.dev2 min read