mirror of https://github.com/sgoudham/Enso-Bot.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
753 B
Python
37 lines
753 B
Python
from __future__ import absolute_import, unicode_literals
|
|
|
|
import subprocess
|
|
import sys
|
|
|
|
import six
|
|
|
|
if six.PY2 and sys.platform == "win32":
|
|
from . import _win_subprocess
|
|
|
|
Popen = _win_subprocess.Popen
|
|
else:
|
|
Popen = subprocess.Popen
|
|
|
|
|
|
DETACHED_PROCESS = 0x00000008
|
|
|
|
|
|
def run_cmd(cmd):
|
|
try:
|
|
process = Popen(
|
|
cmd, universal_newlines=True, stdin=subprocess.PIPE, stderr=subprocess.PIPE, stdout=subprocess.PIPE,
|
|
)
|
|
out, err = process.communicate() # input disabled
|
|
code = process.returncode
|
|
except OSError as os_error:
|
|
code, out, err = os_error.errno, "", os_error.strerror
|
|
return code, out, err
|
|
|
|
|
|
__all__ = (
|
|
"subprocess",
|
|
"Popen",
|
|
"run_cmd",
|
|
"DETACHED_PROCESS",
|
|
)
|