run scripts in parallel bash code example
Example 1: how to run linux command in python
import os
cmd = 'your command here'
os.system(cmd)
Example 2: How to run bash script in python
import subprocess
print "start"
subprocess.call("sleep.sh")
print "end"