Utility to replace CRLF with LF in argument files.

This commit is contained in:
Guido van Rossum 1998-09-14 15:46:41 +00:00
parent 499a6e5fd4
commit 09eea82005

19
Tools/scripts/crlf.py Executable file
View file

@ -0,0 +1,19 @@
#! /usr/bin/env python
"Replace CRLF with LF in argument files. Print names of changed files."
import sys, regsub, 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 = regsub.gsub("\r\n", "\n", data)
if newdata != data:
print file
f = open(file, "wb")
f.write(newdata)
f.close()