SeasonI/C++/scripts/lines.sh
sigonasr2 79922e43b4 Build with optimization flags on
Co-authored-by: sigonasr2 <sigonasr2@gmail.com>
2022-10-10 01:19:25 -05:00

14 lines
294 B
Bash
Executable File

#Returns the line counts of your project.
#C++
shopt -s extglob
ls -1 @(*.h|*.cpp) > temp
while read a; do
if [ "$a" != "pixelGameEngine.h" ] && [ "$a" != "soundwaveEngine.h" ] && [ "$a" != "splash.h" ];
then
echo -e "$a\n" >> temp2
fi
done < temp
wc -l $(cat temp2)
rm temp
rm temp2