Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am trying to build a script in python to mac OS, I need the script to run two other scripts; the only thing my scripts does is run a website, and return value 1 or 0.

I just need to get the values, in windows i am getting then from CMD with "Exit value".

But i am new to mac, and in my job i need do it i mac.

After i get those values, i need to write a file that says 1 or 0.

share|improve this question

1 Answer

up vote 0 down vote accepted
import subprocess
r = subprocess.call(['script', 'argument1', ...])

Now r is the return value from your script. To write that to a file (I assume you want it as text):

open('statusfile.txt', 'w').write('%d\n' % r)
share|improve this answer
When i call the process, its always says to me the file is not exit's, even in windows. – user1032254 Nov 6 '11 at 14:34

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.