summaryrefslogtreecommitdiffstats
path: root/Tools/scripts/lfcr.py
diff options
context:
space:
mode:
Diffstat (limited to 'Tools/scripts/lfcr.py')
-rwxr-xr-xTools/scripts/lfcr.py33
1 files changed, 19 insertions, 14 deletions
diff --git a/Tools/scripts/lfcr.py b/Tools/scripts/lfcr.py
index 3baac97..babafae 100755
--- a/Tools/scripts/lfcr.py
+++ b/Tools/scripts/lfcr.py
@@ -3,17 +3,22 @@
"Replace LF with CRLF in argument files. Print names of changed files."
import sys, re, os
-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 = re.sub("\r?\n", "\r\n", data)
- if newdata != data:
- print filename
- f = open(filename, "wb")
- f.write(newdata)
- f.close()
+
+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 = re.sub("\r?\n", "\r\n", data)
+ if newdata != data:
+ print filename
+ f = open(filename, "wb")
+ f.write(newdata)
+ f.close()
+
+if __name__ == '__main__':
+ main()