Created
November 25, 2016 07:53
-
-
Save yetithefoot/754a4d52cf21cad0cc3f0703e82c5952 to your computer and use it in GitHub Desktop.
Shows average issue title length for repo
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
curl "https://api.github.com/repos/d3/d3/issues?per_page=1000" | jq '.[] | .title' | awk '{ print length($0); }' | jq -s 'add/length' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment