ezark

Crates.ioezark
lib.rsezark
version1.2.0
created_at2025-01-22 10:56:03.779141+00
updated_at2025-02-17 10:27:39.780376+00
descriptionOpen source archive utility written in Rust
homepage
repositoryhttps://github.com/ryzeon-dev/ezark
max_upload_size
id1526500
size1,567,614
Ryzeon (ryzeon-dev)

documentation

README

EZARK

  • Easy Archiver
  • Open source archive utility written in Rust

Install

  • from cargo
cargo install ezark
  • from git
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
  • inspect archive
ezark --inspect archive_name.eza
  • check version
ezark --version
  • to get help, use the -h or --help flag
ezark --help
Commit count: 0

cargo fmt