Skip to content

Instantly share code, notes, and snippets.

@naganowl
Last active May 31, 2019 19:23
Show Gist options
  • Save naganowl/6d3babec74663108cc652de26e7a0e2f to your computer and use it in GitHub Desktop.
Save naganowl/6d3babec74663108cc652de26e7a0e2f to your computer and use it in GitHub Desktop.
Average length of stylesheet
# Get list of all files | Print out each line count | Remove final line total | Calculate average
find . -name *.scss | xargs wc -l | sed -e '$ d' | awk '{ total += $1; count++ } END { print total/count }'
@naganowl
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment