Link Search Menu Expand Document (external link)

OpenVisus.ExecuteCommand

Describe function here.

Function Definition

def ExecuteCommand(cmd):	
	"""
	note: shell=False does not support wildcard but better to use this version
	because quoting the argument is not easy
	"""
	print("# Executing command: ",cmd)
	return subprocess.call(cmd, shell=False)