Describe function here.
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)