#!/bin/bash if [ "$1" != "$2" ]; then echo "These are different."; else echo "These are the same."; fi