If you are on a Linux shell and want to open a file with whatever default application is configured for that type, this often works:
xdg-open Quote.odt
xdg-open invoice.pdf
xdg-open index.html
Make an alias so you have a simpler API (like Mac OS): alias open=xdg-open
.