show/hide this revision's text 5 Expand

open -a Terminal.app $(which program) gets a new terminal running the specified program (assuming you're using bash).

You can use execveexecve() (possible with after a forkfork()) to acheive the same thing in compiled code without knowing any Apple APIs (I imagine there is a proper way to do this...).

Read man open.

Edit: you don't need to specify the path to Terminal.app (the finder can figure that out).


If you have X running, it is even easier: just spawn a new xterm with xterm -e program &.

Read man xterm (which will take longer...).


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}.

show/hide this revision's text 4 Punctuation and formating.

open -a Terminal.app $(which program) gets a new terminal running the specified program (assuming you're using bash).

You can use execve (possible with a fork) to acheive the same thing in compiled code.

Read man open.

Edit: you don't need to specify the path to Terminal.app (the finder knows how to find it)can figure that out).


If you have X running, it is even easier: just spawn a new xterm with xterm -e program &.

Read man xterm (which will take longer...).


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}.

show/hide this revision's text 3 SImplify

open -a /path/to/Terminal.app Terminal.app $(which program) gets a new terminal running the specified program (assuming you're using bash).

You can use execve (possible with a fork to acheive the same thing in compiled code.

Read man open.

Edit: you don't need to specify the path to Terminal.app (the finder knows how to find it).


If you have X running, it is even easier: just spawn a new xterm with xterm -e program &.

Read man xterm (which will take longer...).


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}.

show/hide this revision's text 2 Fix answer after experiments...
show/hide this revision's text 1