blob: 05eacc6a6323b6c3c50fc1f80e6be57e823ac322 [file] [log] [blame]
Ben Murdoch097c5b22016-05-18 11:27:45 +01001#!/usr/bin/python
2# Copyright (c) 2012 Google Inc. All rights reserved.
3# Use of this source code is governed by a BSD-style license that can be
4# found in the LICENSE file.
5
6import sys
7
8fh = open(sys.argv[1], 'w')
9
10filenames = sys.argv[2:]
11
12for filename in filenames:
13 subfile = open(filename)
14 data = subfile.read()
15 subfile.close()
16 fh.write(data)
17
18fh.close()