Skip to content

Instantly share code, notes, and snippets.

@cmattoon
Created May 23, 2017 02:04
Show Gist options
  • Save cmattoon/ac1d71d412aa3d1acbf9e67cfcf0a993 to your computer and use it in GitHub Desktop.
Save cmattoon/ac1d71d412aa3d1acbf9e67cfcf0a993 to your computer and use it in GitHub Desktop.
Python SLOC
#!/bin/bash
# pip install metrics
find . -name '*.py' \|
xargs metrics -q --format csv -f \|
cut -d',' -f 6 \|
tail -n +4 \|
paste -sd+ - \|
sed s'/.$//' \|
bc
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment