From: Guido van Rossum Date: Mon, 14 Sep 1998 15:46:15 +0000 (+0000) Subject: Utility to replace LF with CRLF in argument files. X-Git-Tag: v1.5.2a2~294 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=499a6e5fd470f9791f791379153d34b27aa71eb4;p=thirdparty%2FPython%2Fcpython.git Utility to replace LF with CRLF in argument files. --- diff --git a/Tools/scripts/lfcr.py b/Tools/scripts/lfcr.py new file mode 100755 index 000000000000..7f4d58fe089b --- /dev/null +++ b/Tools/scripts/lfcr.py @@ -0,0 +1,19 @@ +#! /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): + print file, "Directory!" + continue + data = open(file, "rb").read() + if '\0' in data: + print file, "Binary!" + continue + newdata = regsub.gsub("\r?\n", "\r\n", data) + if newdata != data: + print file + f = open(file, "wb") + f.write(newdata) + f.close()