#! /bin/bash
#Integers comparison operators
#String comparison #{ { = , == , != } ..... [ "$a" = "$b" ] #{ {< , > , -z {for null string , #zero-length string } ..... [[ "$a" < "$b" ]]
count=10
if [ $count -eq 10 ]
then
echo "Number Equal to 10 "
fi
i...