Lines Matching refs:output
54 help='command stderr output file')
56 help='command stdout output file')
58 help='save oarsub output log file')
105 # full_output accumulates the full output of the session
124 # Returns a string containing the output of the command.
132 output = self.before.rstrip()
133 return output
136 # Returns a (string, int) tuple with the command output and the status.
139 output = self.do_bare_command(cmd, timeout)
142 return (output, status)
146 (output, status) = shell.do_command('[ -d %s ]' % dirname,
180 (output, status) = shell.do_command('cd ' + cwd)
185 # wacky hack: sometimes scons will create an output directory then
188 # This hack looks for a '-o' option indicating an output file and
215 (output, status) = shell.do_command(' '.join(cmd), options.cmd_timeout)
222 if output:
223 print output
231 # if there was an error, log the output even if not requested