Chm files on Linux with firefox
Microsoft Compiled HTML Help (CHM) is a proprietary format for online help developed by Microsoft. One alternative for use in Linux is to install the extension for firefox chmreader then just create the following script and associating it with the files. chm to automate the process:
#!/bin/sh
url="$1"
chm="chm:file://$url"
exec /usr/bin/iceweasel "$chm"
Thus we for example save chm files in our library Zotero and then open them without going through the command line.


They talked about ...