Open a NEW WINDOW in CHROME in INCOGNITO Mode from terminal with specified URLS

Solution 1:

try this

open -na "Google Chrome" --args -incognito example.com

This works if your use case is to open up a link.

For my case I was trying to open up a html file index.html but I think it was auto prefixed with http:// so it opened up the file as http://index.hml instead. Hopefully the above helps for you though.