| 1234567891011121314151617181920212223242526 | #!/bin/shset -euexport TZ=UTCcd testsEXIT=0for i in *.testfile; do    printf 'Testing: %s ... ' "$i"    if [ -f ${i%%.testfile}.magic ]; then        m="-m ${i%%.testfile}.magic"    else        m=    fi;    if [ "$(file -b $m "$i")" = "$(cat ${i%%.testfile}.result)" ] ; then        echo 'pass'    else        echo 'FAILED'        EXIT=1    fidoneexit $EXIT
 |