# ifeq.sh

a=10

if [ ${a} = 10 ]; then
 echo "a ist 10"
else
 echo "a ist ungleich 10"
fi