Lines Matching full:outfile
18 mimify.py -e [infile [outfile]]
19 mimify.py -d [infile [outfile]]
21 input and outfile to standard output.
207 def unmimify(infile, outfile, decode_base64 = 0):
211 if type(outfile) == type('') and infile == outfile:
217 if type(outfile) == type(''):
218 ofile = open(outfile, 'w')
220 ofile = outfile
415 def mimify(infile, outfile):
419 if type(outfile) == type('') and infile == outfile:
425 if type(outfile) == type(''):
426 ofile = open(outfile, 'w')
428 ofile = outfile
436 usage = 'Usage: mimify [-l len] -[ed] [infile [outfile]]'