Trim Lines
Trim Lines removes trailing whitespace from source code files
This is simple command line tool to batch process source code files to remove trailing whitespaces and convert all line endings to your system native style.
Usage example:
trimlines d:\Projects\SomeProject\src *.c;*.cpp;*.h;*.hpp;*.inc .svn;.git
With this command all files in "d:\Projects\SomeProject\src" including sub-folders that match search masks "*.c;*.cpp;*.h;*.hpp;*.inc" and excluding specified folders ".svn;.git" will be processed.
Can process unicode and system native encoded...