summaryrefslogtreecommitdiffstats
path: root/build/cp.py
blob: 7dfeb3846b3c1e387f71b5244f435e9940cd4a2e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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]))