Starting process in new Terminal window on Mac - Stack Overflow most recent 30 from stackoverflow.com2009-12-05T08:03:46Zhttp://stackoverflow.com/feeds/question/332995http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/332995/starting-process-in-new-terminal-window-on-mac2Starting process in new Terminal window on Macwme2008-12-02T03:52:08Z2009-02-03T15:02:24Z
<p>On Windows I can do <code>CreateProcess(..., CREATE_NEW_CONSOLE, ...)</code> and my child process (which is console app, not GUI) will be launched in a new window. What is the easiest way to emulate this on Mac OS?</p>
http://stackoverflow.com/questions/332995/starting-process-in-new-terminal-window-on-mac/333167#3331674Answer by dmckee for Starting process in new Terminal window on Macdmckee2008-12-02T05:57:41Z2008-12-02T16:35:43Z<p><strong><code>open -a Terminal.app $(which program) </code></strong> gets a new terminal running the specified program (assuming you're using bash).</p>
<p>You can use <strong><code>execve()</code></strong> (possible after a <strong><code>fork()</code></strong>) to acheive the same thing in compiled code without knowing any Apple APIs (I imagine there is a proper way to do this...).</p>
<p>Read <strong><code>man open</code></strong>.</p>
<p>Edit: you don't need to specify the path to Terminal.app (the finder can figure that out).</p>
<p><hr /></p>
<p>If you have X running, it is even easier: just spawn a new xterm with <strong><code>xterm -e program &</code></strong>.</p>
<p>Read <strong><code>man xterm</code></strong> (which will take longer...).</p>
<p><hr /></p>
<p>I'll second Chris about the correct use (or lack thereof) of CLI for ordinary mac programs. In my buisness this is expected but the typical user will be {confused|angry|unhappy}.</p>
http://stackoverflow.com/questions/332995/starting-process-in-new-terminal-window-on-mac/333191#3331913Answer by Chris Hanson for Starting process in new Terminal window on MacChris Hanson2008-12-02T06:11:55Z2008-12-02T06:11:55Z<p>The Terminal (Terminal.app, what you're referring to as "the console") is just another user-level application on Mac OS X, not a capability of the operating system. There is no direct way in the various APIs available on Mac OS X to just start an executable within a new Terminal window.</p>
<p>However, I believe you can open an executable with Terminal as if it was a document — whether in code or as a user — and it will run in a new session. However, this is <strong>not</strong> a normal Mac OS X user experience and <strong>should not</strong> generally be used in Mac software you're going to deliver to end users.</p>
<p>Mac OS X applications are applications. It's fine to provide tools that advanced users can interact with via Terminal, but Terminal is in no way, shape or form a substitute for a real application when delivering software to end users.</p>
<p>I'll add to this that if you're using Cocoa, you can use the <a href="http://developer.apple.com/documentation/Cocoa/Reference/Foundation/Classes/NSTask_Class/Reference/Reference.html" rel="nofollow" title="NSTask Reference">NSTask</a> class to start and interact with another process very easily.</p>
http://stackoverflow.com/questions/332995/starting-process-in-new-terminal-window-on-mac/507426#5074260Answer by Denis for Starting process in new Terminal window on MacDenis2009-02-03T15:02:24Z2009-02-03T15:02:24Z<p>Marc Liyanage does this neatly with "term", osascript tell application "Terminal":<br />
<a href="http://www.entropy.ch/blog/Mac+OS+X/2005/02/28/Terminal_tricks_8220_term_8221_and_8220_clone_8221.html" rel="nofollow">http://www.entropy.ch/blog/Mac+OS+X/2005/02/28/Terminal_tricks_8220_term_8221_and_8220_clone_8221.html</a></p>
<p>(On "typical users": there are different universes, each finding the others strange.<br />
Coming from Unix, I'm used to a process or "| pipe args" anywhere a file can be used;<br />
this helps software componentry immensely.<br />
But open -a does files only -- different universe).</p>