aboutsummaryrefslogtreecommitdiffstats
path: root/build/scripts/append_file.py
blob: 0b594a53e8f0d4453e911bb132c94548217e3c9a (plain) (blame)
1
2
3
4
5
6
7
8
9
import sys 
 
 
if __name__ == "__main__": 
 
    file_path = sys.argv[1] 
    with open(file_path, "a") as f: 
        for text in sys.argv[2:]:
            print >>f, text