#!/bin/bash
# Note use of "=" to test equality, NOT "=="
if [ $1 = $2 ]
then
	echo  $1 equals $2
fi
