1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-21 22:42:09 +02:00
tldr/pages/windows/where.md
Emily Grace Seville c52cc074d9
windows/*.md: make placeholders more compatible with CLIP ones (#9872)
* Make placeholders more compatible with CLIP ones

* Update pages/windows/doskey.md

Co-authored-by: Jack Lin <blueskyson1401@gmail.com>

* Update pages/windows/doskey.md

Co-authored-by: Jack Lin <blueskyson1401@gmail.com>

---------

Co-authored-by: Jack Lin <blueskyson1401@gmail.com>
2023-02-20 15:23:49 +08:00

633 B

where

Display the location of files that match the search pattern. Defaults to current work directory and paths in the PATH environment variable. More information: https://learn.microsoft.com/windows-server/administration/windows-commands/where.

  • Display the location of file pattern:

where {{file_pattern}}

  • Display the location of file pattern including file size and date:

where /T {{file_pattern}}

  • Recursively search for file pattern at specified path:

where /R {{path\to\directory}} {{file_pattern}}

  • Silently return the error code for the location of the file pattern:

where /Q {{file_pattern}}