On 2006-03-28, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote:
> hi
> i am using this code to run a ps command in unix
>
> def run(program, *args):
> pid = os.fork()
> if not pid:
> os.execvp(program, (program,) + args)
> return os.wait()[0]
>
> run("ps", "-eo pid,ppid,args")
>
>
hi
i am using this code to run a ps command in unix
def run(program, *args):
pid = os.fork()
if not pid:
os.execvp(program, (program,) + args)
return os.wait()[0]
run("ps", "-eo pid,ppid,args")
It runs fine, but i wish to store the results into a variablehow
can i do thi