summaryrefslogtreecommitdiffstats
path: root/Tools/scripts/crlf.py
blob: 59e3ff3fc326fa0182eb45ae3b43c9a2160e209a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#! /usr/bin/env python

"Replace CRLF with LF in argument files.  Print names of changed files."

import sys, os
for file in sys.argv[1:]:
    if os.path.isdir(file):
        print file, "Directory!"
        continue
    data = open(file, "rb").read()
    if '\0' in data:
        print file, "Binary!"
        continue
    newdata = data.replace("\r\n", "\n")
    if newdata != data:
        print file
        f = open(file, "wb")
        f.write(newdata)
        f.close()