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
Try
/opt/google/chrome/google-chrome --allow-file-access-from-files index.html
Or
/usr/bin/google-chrome --allow-file-access-from-files index.html
--allow-file-access-from-files will relax some security settings , useful for testing with local files.
--allow-file-access-from-files