The open source repository for the action RPG game in development by Sig Productions titled 'Adventures in Lestoria'!
https://forums.lestoria.net
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
6 lines
332 B
6 lines
332 B
ALLTOTAL=$(wc -l $(find *.cpp *.h)|grep "total"|awk '{print $1}')
|
|
|
|
TOTAL=$(wc -l $(find *.cpp *.h -not -name "miniaudio.h" -not -name "olc*.h")|grep "total"|awk '{print $1}')
|
|
FILECOUNT=$(find *.cpp *.h -not -name "miniaudio.h" -not -name "olc*.h"|wc -l)
|
|
echo "ALL: $[ALLTOTAL]"
|
|
echo "$[TOTAL-FILECOUNT*37] (License lines Excluded)"
|
|
|