fuse-zip

Mount ZIP archives as writable filesystems using FUSE.

brewmacoslinux
Try with needOr install directly
Source

About

FUSE file system to create & manipulate ZIP archives

Commands

fuse-zip

Examples

open and edit files inside a zip archive$ fuse-zip archive.zip /mnt/myzip
create a new zip file by mounting and adding files$ fuse-zip -w new-archive.zip /mnt/myzip && cp file.txt /mnt/myzip/
extract and browse zip contents without unzipping$ fuse-zip large-archive.zip /mnt/zip && ls /mnt/zip
modify files in a zip without extracting everything$ fuse-zip -w archive.zip /mnt/zip && nano /mnt/zip/document.txt
unmount a zip archive when done$ fusermount -u /mnt/myzip