1
0
Fork 0
No description
Find a file
2025-06-12 23:12:19 -04:00
archiver Apply standard Go formatting and update project documentation 2025-06-12 22:02:26 -04:00
collector Add --verbose flag for real-time file discovery feedback 2025-06-12 22:39:32 -04:00
CLAUDE.md Apply standard Go formatting and update project documentation 2025-06-12 22:02:26 -04:00
go.mod Implement collect CLI tool 2025-06-12 21:38:00 -04:00
main.go Add dry run functionality 2025-06-12 23:12:19 -04:00
plan.md Add implementation plan for collect CLI tool 2025-06-12 21:23:56 -04:00
README.md Initial commit 2025-06-12 21:10:27 -04:00
test.sh Add dry run functionality 2025-06-12 23:12:19 -04:00

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