I would like to open a file (index.html) in the current directory with Google Chrome or Chromium from a bash terminal (I\'m using Linux Mint 15). What is the command? I\'v
From the bash shell (on Windows), you can use:
start myFilename.html
and to open a folder:
explorer "C:\Program Files\Git"
Added for reference, since my search landed here, too.