Home | History | Annotate | Download | only in tools

Lines Matching full:command

24 def RunCommand(command):
25 """Run a command.
27 @param command the command as a single string
29 print 'running command [%s]...' % command
30 os.system(command)
64 command = '%s %s %s' % (renderer_path, inputs_as_string, render_dir)
66 command += args
68 RunCommand(command)