Salome HOME
Issue #1865 : initial implementation of the "Fields" feature and additional attribute...
[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