tweak

David Anderson 2024-09-09 16:41:25 -07:00
parent 99571995ef
commit f9bfe50214
1 changed files with 1 additions and 3 deletions

@ -68,14 +68,12 @@ requires that results match exactly:
```php ```php
#!/usr/bin/env php #!/usr/bin/env php
<?php <?php
$f1 = $argv[1]; $f1 = $argv[1];
$f2 = $argv[2]; $f2 = $argv[2];
if (md5_file($f1) != md5_file($f2)) { if (md5_file($f1) != md5_file($f2)) {
fwrite(STDERR, "$f1 and $f2 don't match\n"); fwrite(STDERR, "$f1 and $f2 don't match\n");
exit(1); exit(1);
} }
?> ?>
``` ```