Lines Matching full:infile
60 dest='infile',
122 if options.infile:
123 if not os.path.isfile(options.infile):
124 parser.error('file "%s" not found' % options.infile)
125 with open(options.infile, 'rb') as infile:
126 data = infile.read()
131 infile = get_binary_stdio('stdin')
132 data = infile.read()
153 'bro: error: %s: %s' % (e, options.infile or 'sys.stdin'))