Crates.io | zip2arx |
lib.rs | zip2arx |
version | 0.3.1 |
source | src |
created_at | 2024-02-06 15:04:17.911659 |
updated_at | 2024-09-08 18:33:47.49528 |
description | Convert a zip archive into a arx archive. |
homepage | https://github.com/jubako/arx |
repository | https://github.com/jubako/arx |
max_upload_size | |
id | 1129007 |
size | 52,904 |
zip2arx
is a command line tool to convert zip archive to arx format.
Arx is a new file archive format.
Binaries for Windows, MacOS and Linux are available for every release. You can also install zip2arx using Cargo:
cargo install zip2arx arx
You will need arx
to read the archive.
Creating an archive is simple :
zip2arx -o foo.arx foo.zip
See the arx documentation for full command.
arx list foo.arx | less
arx extract -f foo.arx -C my_out_dir
Extract only one file
arx dump foo.arx my_directory/path/to/my_file > my_file
On linux and macOs, you can mount the archive using fuse.
mkdir mount_point
arx mount foo.arx mount_point
arx
will be running until you unmount mount_point
.