I want to launch an app on OSX from a script. I need pass it command line arguments. Unfortunately, open doesn\'t accept command line args.
open
The only opt
You can launch apps using open:
open -a APP_YOU_WANT
This should open the application that you want.