Lines Matching full:command
64 """capture(command) - Run the given command (or argv list) in a shell and
71 def which(command, paths = None):
72 """which(command, [paths]) - Look up the given command in the paths string
79 if os.path.isfile(command):
80 return command
96 p = os.path.join(path, command + ext)
161 def executeCommand(command, cwd=None, env=None):
162 p = subprocess.Popen(command, cwd=cwd,