tweak

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

@ -66,16 +66,14 @@ As an example, the following PHP script, used as a compare script,
requires that results match exactly:
```php
#! /usr/bin/env php
#!/usr/bin/env php
<?php
$f1 = $argv[1];
$f2 = $argv[2];
if (md5_file($f1) != md5_file($f2)) {
fwrite(STDERR, "$f1 and $f2 don't match\n");
exit(1);
}
?>
```