if [ $1 = $2 ]
   then echo the string: $1 is identical to the string: $2
fi
if [ $1 != $2 ]
   then echo the string: $1 is different than the string: $2
fi
if [ $1 ]
   then echo the entered string contains characters, it is not empty
fi
