cpython/Tools/scripts/lfcr.py

20 lines
492 B
Python
Raw Normal View History

#! /usr/bin/env python
"Replace LF with CRLF in argument files. Print names of changed files."
import sys, regsub, os
for file in sys.argv[1:]:
if os.path.isdir(file):
1998-09-14 12:56:40 -03:00
print file, "Directory!"
continue
data = open(file, "rb").read()
if '\0' in data:
1998-09-14 12:56:40 -03:00
print file, "Binary!"
continue
newdata = regsub.gsub("\r?\n", "\r\n", data)
if newdata != data:
1998-09-14 12:56:40 -03:00
print file
f = open(file, "wb")
f.write(newdata)
f.close()