ebod
Easy/Efficient Backup Of Data
A command-line utility that makes the process of manual backups easy and efficient.
What's New?
Fixed a bug
In Linux, when .ebod directory folder is converted to a hidden directory, there was an error. As all files and directories that start with . are hidden in Linux, I didn't explicitly needed to hide the directory. Therefore the hiding process is made Windows only.
Installation
Using cargo
You can now install ebod through cargo with the command:
cargo install ebodBuilding from source
You can build ebod from source by cloning this repository, cd into the repository and running
cargo build --releaseThen you just have to add the path of the application, usually in , to your system's PATH variable.
For Windows Systems
If you are on a Windows (x86_64) system, then you can refer to the build binary in Releases section. Download it and add the path of the parent folder to PATH variable.
Use ebod in your project
ebod is not only a binary. It is also a library. You can use ebod as a library from the release v1.1.1. You can add ebod to your cargo project with the command:
cargo add ebodor by adding the following line to your Cargo.toml:
ebod = "1.1.1"