(command, stdin=None, **kwargs)
| 27 | pass |
| 28 | |
| 29 | def popen(command, stdin=None, **kwargs): |
| 30 | print(' '.join(command)) |
| 31 | proc = subprocess.Popen(command, **kwargs) |
| 32 | |
| 33 | if proc.wait() != 0: |
| 34 | raise ProcessException(proc.returncode) |
| 35 | |
| 36 | def pquery(command, stdin=None, **kwargs): |
| 37 | print(' '.join(command)) |