Home | History | Annotate | Download | only in python2.7

Lines Matching refs:myarg

230 output=`mycmd myarg`
232 output = Popen(["mycmd", "myarg"], stdout=PIPE).communicate()[0]
246 sts = os.system("mycmd" + " myarg")
248 p = Popen("mycmd" + " myarg", shell=True)
261 retcode = call("mycmd" + " myarg", shell=True)
274 pid = os.spawnlp(os.P_NOWAIT, "/bin/mycmd", "mycmd", "myarg")
276 pid = Popen(["/bin/mycmd", "myarg"]).pid
281 retcode = os.spawnlp(os.P_WAIT, "/bin/mycmd", "mycmd", "myarg")
283 retcode = call(["/bin/mycmd", "myarg"])
295 os.spawnlpe(os.P_NOWAIT, "/bin/mycmd", "mycmd", "myarg", env)
297 Popen(["/bin/mycmd", "myarg"], env={"PATH": "/usr/bin"})
374 (child_stdout, child_stdin) = popen2.popen2(["mycmd", "myarg"], bufsize,
377 p = Popen(["mycmd", "myarg"], bufsize=bufsize,