From 458120dd40db6b4df55a4e96b650e16798ef06a0 Mon Sep 17 00:00:00 2001 From: cinap_lenrek Date: Tue, 3 May 2011 11:25:13 +0000 Subject: add hg and python --- sys/src/cmd/python/Tools/scripts/crlf.py | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100755 sys/src/cmd/python/Tools/scripts/crlf.py (limited to 'sys/src/cmd/python/Tools/scripts/crlf.py') diff --git a/sys/src/cmd/python/Tools/scripts/crlf.py b/sys/src/cmd/python/Tools/scripts/crlf.py new file mode 100755 index 000000000..a975cb292 --- /dev/null +++ b/sys/src/cmd/python/Tools/scripts/crlf.py @@ -0,0 +1,23 @@ +#! /usr/bin/env python +"Replace CRLF with LF in argument files. Print names of changed files." + +import sys, os + +def main(): + for filename in sys.argv[1:]: + if os.path.isdir(filename): + print filename, "Directory!" + continue + data = open(filename, "rb").read() + if '\0' in data: + print filename, "Binary!" + continue + newdata = data.replace("\r\n", "\n") + if newdata != data: + print filename + f = open(filename, "wb") + f.write(newdata) + f.close() + +if __name__ == '__main__': + main() -- cgit v1.2.3