Lines Matching refs:cmd
99 cmd = eng_v
104 cmd = '{} -{} "{}"'.format(cmd, required_key, param)
109 cmd = '{} -{} "{}"'.format(cmd, others_key, param)
110 cmds.append(cmd)
114 def run_target(cmd): argument
115 command = Popen(cmd, stdout=PIPE, stderr=PIPE, stdin=PIPE, shell=True)
119 f.writelines(cmd + "\r\n")
127 f.writelines(cmd + "\r\n")
139 for cmd in cmds:
140 result = run_target('java -jar {} {}'.format(jar, cmd))
143 print(cmd)