diff options
Diffstat (limited to 'build')
-rw-r--r-- | build/cp.py | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/build/cp.py b/build/cp.py new file mode 100644 index 0000000..7dfeb38 --- /dev/null +++ b/build/cp.py @@ -0,0 +1,18 @@ +#!/usr/bin/python +# Copyright (c) 2011 The Chromium Authors. All rights reserved. +# Use of this source code is governed by a BSD-style license that can be +# found in the LICENSE file. + +import shutil, sys; + +""" Copy File. + +This module works much like the cp posix command - it takes 2 arguments: +(src, dst) and copies the file with path |src| to |dst|. +""" + +def Main(src, dst): + return shutil.copyfile(src, dst) + +if __name__ == '__main__': + sys.exit(Main(sys.argv[1], sys.argv[2])) |