Install the complete package with local command reference and every published mode.
install findfindSearch files, directories and text by name, content, type, extension, depth and case.
Build searches from broad to narrow: choose name or text search, then add path, type, extension, depth and case filters.
find <query> [options]find <query>search names recursively in the current directory
find -q <query>search for a query beginning with -
-fsearch files only
-F | -dsearch directories only
-hsearch the current directory only
-tsearch inside text files
-e <ext>limit files by extension; tar.gz is supported
-phpshort form for -e php
-cuse case-sensitive matching
-p <path>start in another directory
Flags can be combined, for example
Run the prepared examples directly on the page. Their results are prebuilt and shown in the browser; no terminal command is executed on the server.
Install the current compatible version. Choose Base for the complete feature set or Minimum for the reduced package; use upgrade to update a module that is already installed.
Base and Minimum are two packages of the same current module release, not separate command versions.
Install the complete package with local command reference and every published mode.
install findInstall the reduced package. Local reference is omitted;
install find -mInstall exactly this published version.
install find -v 1.2.1Ask upgrade to check compatibility and replace the installed block only when needed.
upgrade findRemove the extension block while leaving the core and unrelated modules intact.
install find -uExamples are copyable command lines, not actions executed by this website. Review paths, permissions and destructive flags before running them on a real project.
cd \sandbox | find "error" -t -p logslogs/errors.logfind app -f -e json -p configconfig/app.jsonfind Calculator -php -p srcsrc/Calculator.phpfind data -F -p .data/find sample -h -p datadata/.sample-cachefind ERROR -t -c -p logslogs/errors.logfind app -p config -fconfig/app.ini
config/app.jsonfind -q "-draft" -f -p tmpNo matchesfind missing -p no-such-dirDirectory not found: no-such-dirsandbox/src/Calculator.phpThe example uses a file or directory from the protected /sandbox/ documentation workspace.
<?php
declare(strict_types=1);
final class Calculator
{
public static function add(int $left, int $right): int
{
return $left + $right;
}
}
Moves reusable search filters into a dedicated flag group and removes implementation ceilings from short Help.