0

How would I go about creating a short cut or other type of app that I can just click on with this command:

open -a /Applications/Google\ Chrome.app/Contents/MacOS/Google\ Chrome --args --ignore-certificate-errors

I'm fairly new to this.

orique
  • 1,295
  • 1
  • 27
  • 36

1 Answers1

0

I am assuming you are using bash:

open ~/.bash_aliases with your favourite editor and define an alias as follows:

alias chrome_alias='open -a /Applications/Google\ Chrome.app/Contents/MacOS/Google\ Chrome --args --ignore-certificate-errors'

obviously you could modify the name of the alias

Ralf
  • 25
  • 1
  • 6