\ * * \ Path to search in. You can specify multiple paths by separating * them with ';'. * \ Filename to look for. */ if ($argc < 3) { echo << Find a specific file by name. Path to search in. Filename to look for. EOF; exit(1); } if (!class_exists("FindFile", false)) require_once("findfile.inc"); foreach(new FindFile($argv[1], $argv[2]) as $file) echo $file->getPathname()."\n"; ?>