Home
last modified time | relevance | path

Searched refs:popen2 (Results 1 – 25 of 365) sorted by relevance

12345678910>>...15

/dports/devel/py-bandit/bandit-1.7.1/examples/
H A Dpopen_wrappers.py2 import popen2
11 print(popen2.popen2('/bin/echo / | xargs ls')[0].read())
12 print(popen2.popen3('/bin/echo / | xargs ls')[0].read())
13 print(popen2.popen4('/bin/echo / | xargs ls')[0].read())
14 print(popen2.Popen3('/bin/echo / | xargs ls').fromchild.read())
15 print(popen2.Popen4('/bin/echo / | xargs ls').fromchild.read())
/dports/lang/python-legacy/Python-2.7.18/Lib/test/
H A Dtest_popen2.py12 import popen2
43 popen2._cleanup()
46 repr([c.cmd for c in popen2._active]))
49 for inst in popen2._active:
51 popen2._cleanup()
73 r, w = popen2.popen2(self.cmd)
78 r, w, e = popen2.popen3([self.cmd])
81 r, w, e = popen2.popen3(self.cmd)
87 w, r = os.popen2([self.cmd])
90 w, r = os.popen2(["echo", self.teststr])
[all …]
/dports/lang/python27/Python-2.7.18/Lib/test/
H A Dtest_popen2.py12 import popen2
43 popen2._cleanup()
46 repr([c.cmd for c in popen2._active]))
49 for inst in popen2._active:
51 popen2._cleanup()
73 r, w = popen2.popen2(self.cmd)
78 r, w, e = popen2.popen3([self.cmd])
81 r, w, e = popen2.popen3(self.cmd)
87 w, r = os.popen2([self.cmd])
90 w, r = os.popen2(["echo", self.teststr])
[all …]
/dports/sysutils/uefi-edk2-bhyve-csm/uefi-edk2-aa8d718/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
H A Dtest_popen2.py13 import popen2
44 popen2._cleanup()
47 repr([c.cmd for c in popen2._active]))
50 for inst in popen2._active:
52 popen2._cleanup()
74 r, w = popen2.popen2(self.cmd)
79 r, w, e = popen2.popen3([self.cmd])
82 r, w, e = popen2.popen3(self.cmd)
88 w, r = os.popen2([self.cmd])
91 w, r = os.popen2(["echo", self.teststr])
[all …]
/dports/devel/py-bandit/bandit-1.7.1/doc/source/
H A Dconfig.rst29 shell: [os.system, os.popen, os.popen2, os.popen3, os.popen4,
30 popen2.popen2, popen2.popen3, popen2.popen4, popen2.Popen3,
31 popen2.Popen4, commands.getoutput, commands.getstatusoutput]
74 "os.popen2",
77 "popen2.popen2",
78 "popen2.popen3",
79 "popen2.popen4",
80 "popen2.Popen3",
81 "popen2.Popen4",
/dports/net/mpich2/mpich2-1.5/src/pm/mpd/test/
H A Dtest5.py67 import popen2
68 runner = popen2.Popen4("mpiexec%s -n 2 infloop -p" % (PYEXT)) # -p => don't print
87 import popen2, time
88 mpd1 = popen2.Popen4("mpd%s -l 12345" % (PYEXT))
90 mpd2 = popen2.Popen4("mpd%s -n -h %s -p 12345" % (PYEXT,socket.gethostname()) )
91 mpd3 = popen2.Popen4("mpd%s -n -h %s -p 12345" % (PYEXT,socket.gethostname()) )
/dports/lang/snobol4/snobol4-2.2.2/test/
H A Dpopen2.sno2 output(.o, 99,, "|cat >popen2.dat")
6 input(.i, 98,, "popen2.dat")
10 delete("popen2.dat")
/dports/dns/nsd/nsd-4.3.9/contrib/bind2nsd/bind2nsd/
H A DUtils.py28 import popen2
61 (cout, cin, cerr) = popen2.popen3(cmd)
82 (cout, cin, cerr) = popen2.popen3(cmd)
/dports/devel/gitlab-shell/gitlab-shell-65b8ec55bebd0aea64ac52b9878bafcc2ad992d3/spec/
H A Dgitlab_shell_two_factor_recovery_spec.rb43 Open3.popen2(env, cmd) do |stdin, stdout|
80 Open3.popen2(env, cmd) do |stdin, stdout|
98 Open3.popen2(env, cmd) do |stdin, stdout|
H A Dgitlab_shell_two_factor_verify_spec.rb61 Open3.popen2(env, cmd) do |stdin, stdout|
73 Open3.popen2(env, cmd) do |stdin, stdout|
/dports/java/eclipse-pydev/eclipse-pydev-8.2.0/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/
H A Dpopen2.py88 def popen2(cmd, bufsize=-1, mode='t'): function
95 w, r = os.popen2(cmd, mode, bufsize)
118 def popen2(cmd, bufsize=-1, mode='t'): function
163 r, w = popen2(cmd)
/dports/lang/python27/Python-2.7.18/Doc/library/
H A Dpopen2.rst2 :mod:`popen2` --- Subprocesses with accessible I/O streams
5 .. module:: popen2
20 preferable to using the :mod:`popen2` module.
35 not available when using the :func:`popen2`, :func:`popen3`, and :func:`popen4`
38 from the ones returned by the :mod:`popen2` module.)
41 .. function:: popen2(cmd[, bufsize[, mode]])
68 created using the :func:`popen2` and :func:`popen3` factory functions described
163 import popen2
165 r, w, e = popen2.popen3('python slave.py')
/dports/lang/python-legacy/Python-2.7.18/Doc/library/
H A Dpopen2.rst2 :mod:`popen2` --- Subprocesses with accessible I/O streams
5 .. module:: popen2
20 preferable to using the :mod:`popen2` module.
35 not available when using the :func:`popen2`, :func:`popen3`, and :func:`popen4`
38 from the ones returned by the :mod:`popen2` module.)
41 .. function:: popen2(cmd[, bufsize[, mode]])
68 created using the :func:`popen2` and :func:`popen3` factory functions described
163 import popen2
165 r, w, e = popen2.popen3('python slave.py')
/dports/security/klee/klee-2.2/scripts/
H A Dklee-control12 import os, signal, popen2
27 cout,cin = popen2.popen2(cmd)
/dports/irc/znc/znc-1.8.2/include/znc/
H A DExecSock.h31 m_iPid = popen2(iReadFD, iWriteFD, sExec); in Execute()
47 int popen2(int& iReadFD, int& iWriteFD, const CString& sCommand);
/dports/cad/scotch/aster-full-src-14.6.0/
H A Dcheck_popen_thread.py6 import popen2
21 pipe = popen2.Popen4("ls > /dev/null")
/dports/french/med/aster-full-src-14.6.0/
H A Dcheck_popen_thread.py6 import popen2
21 pipe = popen2.Popen4("ls > /dev/null")
/dports/math/mumps/aster-full-src-14.6.0/
H A Dcheck_popen_thread.py6 import popen2
21 pipe = popen2.Popen4("ls > /dev/null")
/dports/cad/astk-serveur/aster-full-src-14.6.0/
H A Dcheck_popen_thread.py6 import popen2
21 pipe = popen2.Popen4("ls > /dev/null")
/dports/cad/astk-client/aster-full-src-14.6.0/
H A Dcheck_popen_thread.py6 import popen2
21 pipe = popen2.Popen4("ls > /dev/null")
/dports/science/tfel-edf/aster-full-src-14.6.0/
H A Dcheck_popen_thread.py6 import popen2
21 pipe = popen2.Popen4("ls > /dev/null")
/dports/mail/pymsgauth/pymsgauth-2.1.0/
H A DCHANGELOG4 -make change to the way the mail command is passed to the popen2.Popen3()
16 the popen2 command handling.
/dports/games/tuxpaint/tuxpaint-0.9.26/fonts/locale/zh_tw_docs/
H A Dmaketuxfont.py7 import popen2
49 r, w, e = popen2.popen3(cmd)
/dports/multimedia/libgav1/libgav1-0.17.0/third_party/googletest/googletest/test/
H A Dgtest_test_utils.py50 import popen2
270 p = popen2.Popen4(command)
272 p = popen2.Popen3(command)
/dports/science/ALPSCore/ALPSCore-2.2.0/common/deps/gtest-1.7.0/test/
H A Dgtest_test_utils.py50 import popen2
275 p = popen2.Popen4(command)
277 p = popen2.Popen3(command)

12345678910>>...15