summaryrefslogtreecommitdiff
path: root/countlines.sh
blob: 62858f926ea16660590599182034563badb481f7 (plain)
1
2
3
4
5
6
7
8
9
10
#!/usr/bin/bash
echo "
js lines of code: "
find . -name '*.js' | xargs wc -l

echo "
scss lines of code: "
find . -name '*.scss' | xargs wc -l

echo ""