repo.or.cz
/
llvm-complete.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[lib/ObjectYAML] - Cleanup the private interface of ELFState<ELFT>. NFCI.
[llvm-complete.git]
/
utils
/
lint
/
remove_trailing_whitespace.sh
blob
6e0c9be0932b371e34325591094726e43524a404
1
#!/bin/sh
2
# Deletes trailing whitespace in-place in the passed-in files.
3
# Sample syntax:
4
# $0 *.cpp
5
6
perl
-pi -e
's/\s+$/
\n
/'
$
*