Skip to content

Instantly share code, notes, and snippets.

@yetithefoot
Created November 25, 2016 07:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save yetithefoot/754a4d52cf21cad0cc3f0703e82c5952 to your computer and use it in GitHub Desktop.
Save yetithefoot/754a4d52cf21cad0cc3f0703e82c5952 to your computer and use it in GitHub Desktop.
Shows average issue title length for repo
#!/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