#!/bin/sh
echo -n 'Enter string 1: '
read string1
echo -n 'Enter string 2: '
read string2
if test $string1 = $string2 
then
    echo 'They match!'
else
    echo 'No match!'
fi
