sunzip

Crates.iosunzip
lib.rssunzip
version
sourcesrc
created_at2025-03-03 15:27:42.758873+00
updated_at2025-03-03 15:27:42.758873+00
description7Z Compact/Extract Tool
homepagehttps://github.com/gabrielfalcao/sunzip
repository
max_upload_size
id1575752
Cargo.toml error:TOML parse error at line 22, column 1 | 22 | autolib = false | ^^^^^^^ unknown field `autolib`, expected one of `name`, `version`, `edition`, `authors`, `description`, `readme`, `license`, `repository`, `homepage`, `documentation`, `build`, `resolver`, `links`, `default-run`, `default_dash_run`, `rust-version`, `rust_dash_version`, `rust_version`, `license-file`, `license_dash_file`, `license_file`, `licenseFile`, `license_capital_file`, `forced-target`, `forced_dash_target`, `autobins`, `autotests`, `autoexamples`, `autobenches`, `publish`, `metadata`, `keywords`, `categories`, `exclude`, `include`
size0
Gabriel Falcão (gabrielfalcao)

documentation

https://docs.rs/sunzip

README

Sunzip - 7Z Compact/Extract Tool

Features

  • Cyclic-Redundancy-Check Verification when trying to existing extract files

USAGE Example

Given dummy files data*.txt

rm -f data-{2,3,4,5,6,7}.txt;
rm -f *.txt
cat >gendata.sh <<EOF
#!/bin/bash
for s in \$(seq 2 7); do
    target="data-\${s}.txt"
    echo -n > \$target
    echo "\$(seq 10 | xargs | sed 's/[[:space:]]//g' | sed 's/[[:digit:]]/-/g')" >> \$target
    echo "\$target" >> \$target
    echo -e "\$(seq 10 | xargs | sed 's/[[:space:]]//g' | sed 's/[[:digit:]]/-/g')\n\n" >> \$target
    seq \$((s * 7)) | sed "s,^,[\$(date +"%Y/%m/%d-%H:%M:%S")],g" >> \$target
    echo "Generated dummy data in: \$target"
done
EOF
bash gendata.sh

Compact Files into Archive

s7zip -o archive.7z data*.txt

Extract 7z Archive

sunzip archive.7z

or

s7unzip archive.7z
Commit count: 0

cargo fmt