[EMAIL PROTECTED] wrote:
>
>How to execute bash scripts from python (other than using os.popen) and
>get the values that those bash scripts return.

Why would you eliminate os.popen?  It is precisely the right way to do
this.  That's the same interface bash itself uses to execute scripts.

That is, assuming by "values" you mean the stdout from the script.  If you
really mean the numerical return code, you can use os.system.
-- 
- Tim Roberts, [EMAIL PROTECTED]
  Providenza & Boekelheide, Inc.
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to