bash si le contenu de fichier est égal

str=ABCD
if [[ $(< test.txt) != "$str" ]]; then
    # send e-mail
fi
feddynventor