passfail.sh 158 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 #!/bin/ksh -p if (grep "ERROR" image_diff.log >/dev/null) then echo Regression: FAILED echo "(see image_diff.log)" else echo Regression: SUCCEEDED fi