1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-23 17:22:08 +02:00
tldr/pages/windows/forfiles.md
Vitor Henrique 55a49c4ba1
pages*: remove "one or more" from description when superfluous (#12121)
* pages*: remove "one or more" from description when superfluous

---------

Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com>
2024-01-25 10:58:11 +05:30

28 lines
571 B
Markdown

# forfiles
> Select files to execute a specified command on.
> More information: <https://learn.microsoft.com/windows-server/administration/windows-commands/forfiles>.
- Search for files in the current directory:
`forfiles`
- Search for files in a specific directory:
`forfiles /p {{path\to\directory}}`
- Run the specified command for each file:
`forfiles /c "{{command}}"`
- Search for files using a specific glob mask:
`forfiles /m {{glob_pattern}}`
- Search for files recursively:
`forfiles /s`
- Search for files older than 5 days:
`forfiles /d +{{5}}`