| Crates.io | rbak |
| lib.rs | rbak |
| version | 1.0.0 |
| created_at | 2025-12-07 04:07:14.162104+00 |
| updated_at | 2025-12-08 01:49:45.002301+00 |
| description | Simple Rust CLI backup tool: files → .bak, directories → _bak (recursive) |
| homepage | |
| repository | https://github.com/A-Young-Git/rbak |
| max_upload_size | |
| id | 1971113 |
| size | 23,147 |
rbak is a simple Rust command-line backup tool that creates backups of files and directories:
.bak extension (e.g., file.txt → file.bak)_bak suffix (e.g., mydir → mydir_bak/)rbak file path/to/file.txt
This creates path/to/file.bak.
rbak dir path/to/directory
This creates path/to/directory_bak/ with all contents copied recursively.
rbak --help
cargo install rbak
clap for CLI argument parsing and anyhow for error handling.MIT