Ivan Shevanski wrote:
> I know there is an easy way to do this, and I just can not remember. I have 
> already searched where I thought the module would be. . . I just want to run 
> some name specific commands.  Is this easily possible?

Quick and dirty:

   import os
   os.system('./some --command')

More robust: Use the subprocess module.

-- 
Robert Kern
[EMAIL PROTECTED]

"In the fields of hell where the grass grows high
  Are the graves of dreams allowed to die."
   -- Richard Harter

-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to