1#!/usr/bin/env python23# Copyright (c) 2009 Google Inc. All rights reserved.4# Use of this source code is governed by a BSD-style license that can be5# found in the LICENSE file.67importsys89f = open(sys.argv[1], 'wb')
10f.write('Hello from bare.py\n')
11f.close()
12