From 7553981ca2b9a9f4b1af5e0b7faaf759dcf16b57 Mon Sep 17 00:00:00 2001 From: Michael DeHaan Date: Tue, 28 Feb 2012 01:39:47 -0500 Subject: [PATCH] ok I see output_dest was actually used but IMHO this should be something we use the shell for, i.e. output to stdout and redirect, using tee if neccessary --- bin/ans-command | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/bin/ans-command b/bin/ans-command index d9753eca9a8..6db25dd3458 100755 --- a/bin/ans-command +++ b/bin/ans-command @@ -94,16 +94,6 @@ def main(args): error_print(msg) continue - if options.output_dest: - fo = open(options.output_dest + '/' + hn +'.output', 'w') - fo.write(mycmd + '\n') - fo.write('%s:\n' % hn) - if options.return_codes: - fo.write('return code: %s\n' % d['rc']) - fo.write('%s\nErrors:\n%s\n' % (d['stdout'], d['stderr'])) - fo.close() - continue - if options.one_line: if options.return_codes: print '%s:%s:%s:%s' % (hn, d['rc'], d['stdout'], d['stderr']) @@ -123,10 +113,6 @@ def main(args): error_print(hn) print '' - - if options.output_dest: - print "output written to %s" % options.output_dest - if __name__ == "__main__": sys.exit(main(sys.argv[1:]))