原來用 email client 就能開 mhtml 檔案了,把副檔名改成 eml 即可,像是用 thunderbird 。
某些網頁備份工具會用這個格式,但瀏覽器大多不支援了。

也試了 avfs ,但他只有支援 mailfs ,好像是 mbox 格式的 driver ,而且也只解析到一封封 email 層級,不能解析 email 裡的 multi-part 。

#mhtml #avfs

在 linux 上用 #avfs 存取壓縮檔一段時間了,今天發現在 avfs 中用 cat 的速度會比 dd pv wc 慢超級多。

```term
~/.avfs/home/gholk/ram/boot.zip# $ time wc -c boot.img
100663296 boot.img

real 0m0.481s
user 0m0.001s
sys 0m0.023s

~/.avfs/home/gholk/ram/boot.zip# $ time cat boot.img | wc -c
100663296

real 0m11.430s
user 0m0.008s
sys 0m0.143s

~/.avfs/home/gholk/ram/boot.zip# $ time dd if=boot.img | wc -c
100663296

real 0m0.856s
user 0m0.407s
sys 0m0.906s
```

https://newtoypia.blogspot.com/2019/06/avfs.html

avfs: 不必解開, 直接把壓縮檔當成目錄大搖大擺走進去

我每年會備份一次個人檔案。 硬碟上有歷年的 .tgz 備份檔。 有時需要把舊文件挖出來看。 問題是: 不記得我要的檔案在哪一年份的備份裡。 於是逐年 [解壓縮、 搜尋、 刪掉] 直到找到為止, 有點麻煩。 今天終於發現一招好用的方案: 採用 AVFS。