mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-01 05:39:11 +00:00
find: Implement support for multiple directories
This commit is contained in:
parent
5a21c3b389
commit
0ca63cfd6e
Notes:
sideshowbarker
2024-07-17 23:12:25 +09:00
Author: https://github.com/timschumi
Commit: 0ca63cfd6e
Pull-request: https://github.com/SerenityOS/serenity/pull/11044
Reviewed-by: https://github.com/alimpfard
Reviewed-by: https://github.com/awesomekling
2 changed files with 23 additions and 18 deletions
|
@ -5,13 +5,13 @@ find - recursively search for files
|
|||
## Synopsis
|
||||
|
||||
```**sh
|
||||
$ find [-L] [root-path] [commands...]
|
||||
$ find [-L] [root-paths...] [commands...]
|
||||
```
|
||||
|
||||
## Description
|
||||
|
||||
`find` recursively traverses the file hierarchy starting at the given root path
|
||||
(or at the current working directory if the root path is not specified), and
|
||||
`find` recursively traverses the file hierarchy starting at the given root paths
|
||||
(or at the current working directory if no root paths have been specified), and
|
||||
evaluates the given commands for each found file. The commands can be used to
|
||||
both filter the set of files and to perform actions on them.
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue