I am working on an jail broken iphone app that calls a shell command. To read the output I redirect the output of the command to file. That is where my problem lies. When I attempt to do the redirect sh reports that the operation is not permitted.this is the exact output of gdb: sh: ./tmp/tmp.out: Operation not permitted Also I call my command using the system() function. thank you in advance

link|improve this question

57% accept rate
feedback

1 Answer

up vote 2 down vote accepted

You might instead want to use NSTask which is built for these sorts of things.

link|improve this answer
to the best of my knowledge nstask is not apart of the cocoa touch library any other ideas? – romejoe Aug 17 '10 at 21:52
@romejoe It's there (I checked), not documented though – cobbal Aug 17 '10 at 22:06
ok what header or framework file do I have to import in order to access it? also is nstask available in all firmware versions? – romejoe Aug 17 '10 at 23:35
@romejoe I would try copying NSTask.h from Foundation.framework for Mac. You shouldn't have to link against anything extra. I would imagine it's available on all firmwares, but I can only confirm iOS 4. – cobbal Aug 17 '10 at 23:47
thank you this works after im done testing ill reply with if nstask works on all firmwares – romejoe Aug 18 '10 at 4:01
feedback

Your Answer

 
or
required, but never shown

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