Search found 1 match

by pv479953
Wed May 30, 2018 9:57 am
Forum: Getting Started with LiveCode - Experienced Developers
Topic: OSX app started from commandline
Replies: 2
Views: 4254

Re: OSX app started from commandline

An application bundle (a .app file) is actually a bunch of directories. Instead of using open and the .app name, you can actually move into it and start the actual binary. For instance:

$ cd /Applications/LittleSnapper.app/
$ ls
Contents
$ cd Contents/MacOS/
$ ./LittleSnapper
That is the actual ...