Initial commit
This commit is contained in:
commit
8f8b374aeb
1 changed files with 18 additions and 0 deletions
18
README.md
Normal file
18
README.md
Normal file
|
@ -0,0 +1,18 @@
|
|||
# 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
|
||||
```
|
Loading…
Add table
Reference in a new issue