mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-03-13 16:59:26 +00:00
Move pages under tldr, lint run.sh, update docs
This commit is contained in:
26
tldr/windows/where
Normal file
26
tldr/windows/where
Normal file
@@ -0,0 +1,26 @@
|
||||
---
|
||||
syntax: markdown
|
||||
tags: [tldr, windows]
|
||||
source: https://github.com/tldr-pages/tldr.git
|
||||
---
|
||||
# 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 o\directory}} {{file_pattern}}`
|
||||
|
||||
- Silently return the error code for the location of the file pattern:
|
||||
|
||||
`where /Q {{file_pattern}}`
|
||||
Reference in New Issue
Block a user