1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
!#/usr/bin/bash echo " python code:" find scripts/populate -name '*.py' | xargs wc -l echo " shell script code:" find scripts -name '*.sh' | xargs wc -l echo " rust code:" find src -name '*.rs' | xargs wc -l echo