20 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
23 if [ -s ./tofix ]; then
24 if [[ ${FIX_LINE_ENDINGS} == 1 ]]; then
25 python correction_auto_2.py --cpplint_output_file ./tofix
26 echo "NOTE: Line endings are fixed"