10 examples of 'run bash in python' in Python

Every line of 'run bash in python' code snippets is scanned for vulnerabilities by our powerful machine learning engine that combs millions of open source libraries, ensuring your Python code is secure.

All examples are scanned by Snyk Code

By copying the Snyk Code Snippets you agree to
31def bashRun(value):
32 subprocess.call('%s' %(value),shell=True)
4def execute_bash(command):
5 """
6 Executes bash command, prints output and
7 throws an exception on failure.
8 """
9 process = subprocess.Popen(command,
10 shell=True,
11 stdout=subprocess.PIPE,
12 stderr=subprocess.STDOUT,
13 universal_newlines=True)
14 for line in process.stdout:
15 print(line, end='', flush=True)
16 process.wait()
17 assert process.returncode == 0
42def test_bash():
43 try:
44 proc = run(
45 ['bash', '-n', 'misc/completion/ocrmypdf.bash'],
46 check=True,
47 encoding='utf-8',
48 stdout=PIPE,
49 stderr=PIPE,
50 )
51 assert proc.stderr == '', proc.stderr
52 except FileNotFoundError:
53 pytest.xfail('bash is not installed')
64def run_script(*args, **kw):
65 """Run diff rendering script with given arguments and return its output."""
66 cmd = ['fldiff'] + list(args)
67
68 proc = subprocess.Popen(cmd, stderr=subprocess.PIPE,
69 stdout=subprocess.PIPE, stdin=subprocess.PIPE,
70 **kw)
71 stdout, stderr = proc.communicate()
72 return proc.returncode, stderr.decode('utf-8'), stdout.decode('utf-8')
22def _run_script(scriptname, args = [], **kwargs):
23 logger.info('Command: {} {}'.format(scriptname, ' '.join(args)))
24 script_path = os.path.join(_tools_dir(), scriptname)
25 # redirect stdout to stderr:
26 subprocess.check_call(['bash', script_path] + args, stdout=sys.stderr,
27 **kwargs)
44def run_local_script(self, script):
45 return self.__run_script(['/bin/bash'], script)
64def BoostRunPythonScript(env, script):
65 return env.BoostRun(env.File(script), script.replace('.py', '.result'), '"${PYTHON}" $SOURCE')
11def _run_shell(env, args):
12 return env.run_shell()
163def sh(args=''):
164 invoke(r'%s\bin\sh.exe' % options['cyghome'], args)
89def exec_script(script_filename, env={}, *args):
90 """
91 Executes a Python script in an externally spawned interpreter, and
92 returns anything that was emitted in the standard output as a
93 single string.
94
95 To prevent missuse, the script passed to hookutils.exec_script
96 must be located in the `PyInstaller/utils/hooks/subproc` directory.
97 """
98 script_filename = os.path.basename(script_filename)
99 script_filename = os.path.join(os.path.dirname(__file__), 'subproc', script_filename)
100 if not os.path.exists(script_filename):
101 raise SystemError("To prevent missuse, the script passed to "
102 "hookutils.exec-script must be located in "
103 "the `PyInstaller/utils/hooks/subproc` directory.")
104
105 cmd = [script_filename]
106 cmd.extend(args)
107 return __exec_python_cmd(cmd, env=env)

Related snippets