projects
/
oweals
/
gnunet.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
-simplify to use new namestore API to skip initial iteration, document now passing...
[oweals/gnunet.git]
/
contrib
/
removetrailingwhitespace
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))