1#!/bin/bash 2if diff <(unzip -p "$1" "META-INF/$2") "$3"; then 3 echo Passed 4 exit 0 5else 6 echo Failed 7 exit 1 8fi 9