Hi,
#! /bin/bash
x=50
if [ $x -gt 25 ]
then
mail -s "$x is greater than 25" email@address
fi
i have run this command on unix shell script...
their is no error but i am not getting the mail
can anybody tell me what may be the reason??
#! /bin/bash
x=50
if [ $x -gt 25 ]
then
mail -s "$x is greater than 25" email@address
fi
i have run this command on unix shell script...
their is no error but i am not getting the mail
can anybody tell me what may be the reason??
Comment