Skip to content

Instantly share code, notes, and snippets.

@imiric
Last active December 14, 2015 14:08
Show Gist options
  • Save imiric/5098778 to your computer and use it in GitHub Desktop.
Save imiric/5098778 to your computer and use it in GitHub Desktop.
Average of maximum line lengths of all files.
for file in $(find * -name "*.py"); do
wc -L $file
done | awk '{if($1 > 0){ sum+=$1; rn+=1 }} END { print sum/rn }'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment