Salome HOME
Issue #1860: fix end lines with spaces
[modules/shaper.git] / findEndLines.sh
1 #!/bin/bash
2
3 find . \( -name "*.h" -o -name "*.cpp" \) -exec cpplint.py --filter=-,+whitespace/end_of_line  --verbose=0 --counting=detailed {} \+ 2>&1 | grep -v Done | tee ./tofix
4
5 python correction_auto_2.py --cpplint_output_file ./tofix
6
7 rm ./tofix