fuse-zipの概要
概要
- linuxのfuseを利用してzipファイルをマウントすることができるツール
- 読み書き可能
- 編集した内容はunmount時にzipファイルに反映される
インストール
debian/ubuntu
$ sudo apt install fuse-zip
使い方
$ mkdir /tmp/zipArchive
$ fuse-zip foobar.zip /tmp/zipArchive
(do something with the mounted file system)
$ fusermount -u /tmp/zipArchive