Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm brand new to Cocoa programming and was wondering how to run a .command file through my program. I've seen use of NSTask but being new I don't quite understand all of the lines and can't seem to get it to work. I don't need to monitor the terminal results or retrieve the data that terminal puts out, I just need to run it.

share|improve this question
“…being new I don't quite understand all of the lines…” That's what the documentation is for: developer.apple.com/library/mac/documentation/Cocoa/Reference/… The documentation explains what each method does, and there's a link to the relevant guide document near the top and on the side. – Peter Hosey Oct 6 '11 at 14:53

1 Answer

up vote 1 down vote accepted

The most simple way is:

system("/path/to/my/script.command");

This is not Cocoa, this is Posix.

share|improve this answer
Thank you so much! This worked PERFECTLY. – user981636 Oct 6 '11 at 8:09

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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