1#!/usr/bin/env python
2
3# Copyright (c) 2012 Google Inc. All rights reserved.
4# Use of this source code is governed by a BSD-style license that can be
5# found in the LICENSE file.
6
7from optparse import OptionParser
8
9parser = OptionParser()
10parser.add_option('-a', dest='platform')
11parser.add_option('-o', dest='output')
12parser.add_option('-p', dest='path')
13(options, args) = parser.parse_args()
14
15f = open(options.output, 'w')
16print >>f, 'options', options
17print >>f, 'args', args
18f.close()
19