commit 8f8b374aeb191d96ec2af2d55953a8e0d1bafb2d Author: Andrew Tomaka Date: Thu Jun 12 21:10:27 2025 -0400 Initial commit diff --git a/README.md b/README.md new file mode 100644 index 0000000..7e1dd73 --- /dev/null +++ b/README.md @@ -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 +```