I'm executing a shell script using NSTask but the problem is that the shell script is one of those scripts that keeps running until you press control+c. It starts up fine but then my mac application just waits for it to end. How can I make it so that it detaches the task from the mac application and goes and runs it in a background.

link|improve this question

78% accept rate
Can you place your code? – Girish Kolari Jul 19 '11 at 5:35
1  
I'm using the STPrivilegedTask library found at sveinbjorn.org/STPrivilegedTask – ed1t Jul 19 '11 at 12:24
this don't use NSTask ... use cocoadev.com/index.pl?NSTask – Girish Kolari Jul 19 '11 at 18:17
feedback

1 Answer

Don't call waitUntilExit or otherwise run the task synchronously. If the task has lots of output, make sure you read and process the data or else an i/o buffer will fill and it'll block.

In general, you shouldn't be using NSTask for a daemon like operation anyway. You should be using launchd.

link|improve this answer
do you have an example of using launchd in cocoa? My main requirement is to run the shell script under admin privilege. – ed1t Jul 19 '11 at 17:47
see man launchd.plist in a terminal window... – bbum Jul 20 '11 at 0:09
And for a useful interface to launchd configuration.. macupdate.com/app/mac/19879/lingon – ohhorob Jul 20 '11 at 5:29
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.