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

Lines Matching refs:bin

163 /bin/sh implicitly.  This means that all characters, including shell
228 Replacing /bin/sh shell backquote
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"})
341 (child_stdin, child_stdout) = os.popen2(["/bin/ls", "-l"], mode,
344 p = Popen(["/bin/ls", "-l"], bufsize=bufsize, stdin=PIPE, stdout=PIPE)
561 >>> check_output(["/bin/sh", "-c",
1187 args = ["/bin/sh", "-c"] + args