diff options
Diffstat (limited to 'contrib/removetrailingwhitespace')
-rwxr-xr-x | contrib/removetrailingwhitespace | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/contrib/removetrailingwhitespace b/contrib/removetrailingwhitespace new file mode 100755 index 00000000..9e620cbb --- /dev/null +++ b/contrib/removetrailingwhitespace | |||
@@ -0,0 +1,14 @@ | |||
1 | #!/usr/bin/python | ||
2 | |||
3 | import sys | ||
4 | import re | ||
5 | |||
6 | for fileName in sys.argv[1:]: | ||
7 | f = open(fileName, 'r+') | ||
8 | fileString = f.read() | ||
9 | |||
10 | fileString = re.sub(r'[ ]+\n', r'\n', fileString) | ||
11 | fileString = re.sub(r'\r', r'', fileString) | ||
12 | f.seek(0) | ||
13 | f.write(fileString) | ||
14 | f.truncate(len(fileString)) | ||