Sha256: 3c6e30c0546b5ee2eeb16dd00d1c8c025ee8c500aec26715ce326ceaea5055b4
Contents?: true
Size: 367 Bytes
Versions: 28
Compression:
Stored size: 367 Bytes
Contents
#!/usr/bin/python # Copyright (c) 2012 Google Inc. All rights reserved. # Use of this source code is governed by a BSD-style license that can be # found in the LICENSE file. import sys fh = open(sys.argv[1], 'w') filenames = sys.argv[2:] for filename in filenames: subfile = open(filename) data = subfile.read() subfile.close() fh.write(data) fh.close()
Version data entries
28 entries across 28 versions & 5 rubygems