zipwin is a CLI tool to create ZIP file that can be extracted on Windows without encoding issues.
🚧 This project is under development. 🚧
Currently, you need to build from source:
# After clone this repository and change directory
cargo build --release
cd target/release
chmod +x zipwin
mv zipwin /usr/local/bin/
To create a ZIP file from a directory:
zipwin <directory>
By default, the output file will be named <directory_name>.zip
.
zipwin <target_directory> <output_file.zip>