2023-12-29 02:43:59 -06:00
|
|
|
ALLTOTAL=$(wc -l $(find *.cpp *.h)|grep "total"|awk '{print $1}')
|
|
|
|
|
2024-01-08 02:05:09 -06:00
|
|
|
TOTAL=$(wc -l $(find *.cpp *.h -not -name "stb_vorbis.cpp" -not -name "stb_vorbis.h" -not -name "miniaudio.h" -not -name "olc*.h")|grep "total"|awk '{print $1}')
|
|
|
|
FILECOUNT=$(find *.cpp *.h -not -name "stb_vorbis.cpp" -not -name "stb_vorbis.h" -not -name "miniaudio.h" -not -name "olc*.h"|wc -l)
|
2023-12-29 02:43:59 -06:00
|
|
|
echo "ALL: $[ALLTOTAL]"
|
2023-11-29 00:50:00 -06:00
|
|
|
echo "$[TOTAL-FILECOUNT*37] (License lines Excluded)"
|