Re: CLI calls
Re: CLI calls
- Subject: Re: CLI calls
- From: Finlay Dobbie <email@hidden>
- Date: Mon, 13 Aug 2001 21:09:06 +0100
On Monday, August 13, 2001, at 09:01 pm, Todd Martin wrote:
Well NSTask looks promising. It doesn't need to be anything horribly
complicated. It's basically just going to run a "make install" on
something at the click of a button. It would perhaps be nice to be able
to save the output or print it to the screen, but I'll take this one
step at a time. Thanks everyone for the help!
Note that "make install" will only work on computers with the developer
tools installed, btw :-)
system() blocks until the process it calls returns, AFAIK. NSTask
doesn't (it launches another thread in the background, I think).
-- Finlay