I am looking for a trick in which to open the same app twice. Let me explain.
For example, I have an app called SQLite Database Browser but it can only handle one SQL DB at a time. I would like to start another SQLite DB Browser so I can open another SQL DB file. How do I do that?
12 Answers
If you use open from the command line you can pass a parameter to start a new instance:
open -n /Applications/TextEdit.appAnother way is to find the Unix executable in the app bundle and run it:
/Applications/ & 5 I know with CarbonCopyCloner I can make another copy of the application itself and I can open two instances of CCC at the same time. Have you tried something like that?
3