1
0
Fork 0
collect/README.md
2025-06-12 21:10:27 -04:00

18 lines
370 B
Markdown

# collect
CLI tool that collects files recursively matching specific names, maintains
their file structure, and adds them to an archive for backup.
## Examples
Finds all files named `.mise.toml`
```
collect --name .mise.toml ./ backup.tgz
```
Finds all files nested in a directory that glob matches aet-* (ie. aet-bin)
```
collect --match aet-*/ ./ backup.zip
```