意外と分からなかったので、メモ。
terminal
explorer.exe foo.html
explorer.exeを使用すればhtmlファイルを開くことが出来る。
.bashrc
export BROWSER="explorer.exe"
開けなければ、.bashrcに設定する。
.bashrc
alias start="explorer.exe"
楽に開けるようにエイリアスを.bashrcに設定する。
terminal
start foo.html
startコマンドでhtmlを開けるようになる。