Ejemplo n.º 1
0
Archivo: cmd.py Proyecto: mak1e/Tasks
def run(commands):
	processes = []
	for command in commands:
		if isinstance(command, basestring):
			os.chdir(command)
		else:
			print "Executing: " + ' '.join(command)
			multiserve.run((command,))
Ejemplo n.º 2
0
def run(commands):
	processes = []
	for command in commands:
		if isinstance(command, basestring):
			os.chdir(command)
		else:
			print command
			multiserve.run((command,))
#			process = subprocess.Popen(command, stdout=subprocess.PIPE, stderr=subprocess.PIPE, universal_newlines=True)
#			print process.communicate()[0]