Sophie

Sophie

distrib > Mandriva > 2010.0 > i586 > media > contrib-release > by-pkgid > 2053a0d9eaaf755b990f80ce4df504a7 > files > 321

waf-1.5.9-1mdv2010.0.noarch.rpm

#! /usr/bin/env python

"""
copies the input as output
"""

import sys, os

file = open(sys.argv[1], 'rb')
txt = file.read()
file.close()

file = open(sys.argv[2], 'wb')
file.write(txt)
file.close()