EZARK

- Easy Archiver
- Open source archive utility written in Rust
Install
cargo install ezark
git clone https://github.com/ryzeon-dev/ezark
cd ezark
make
sudo make install
git repository contains compiled executables, for linux_amd64, linux_arm64, win_x86_64
Usage
- verbose operation can be obtained using
-v or --verbose flag
- create an archive
ezark --make archive_name.eza files_and_dirs
- when creating an archive, it is possible to specify certain string patterns to exclude
- doing this requires the use of the
-x or --exclude flag, followed by a comma separated list of patterns
ezark --make archive_name.eza files_and_dirs --exclude dirs_to_exclude,files_to_exclude
- extract an archive
- if no extraction path is given, the extraction will be executed in current path
ezark --extract archive_name.eza extraction_path
ezark --inspect archive_name.eza
ezark --version
- to get help, use the
-h or --help flag
ezark --help