Skip to content

Instantly share code, notes, and snippets.

@jrumbut
Created October 27, 2015 19:09
Show Gist options
  • Save jrumbut/9a0bb8d26ae5f1b9b87d to your computer and use it in GitHub Desktop.
Save jrumbut/9a0bb8d26ae5f1b9b87d to your computer and use it in GitHub Desktop.
Sorted list of most common tag (groupings) out of Taiga's somewhat unusual report format
#/bin/bash
cat ./issues.csv | awk -F",," '{print $3}' | sort | awk '/^[a-z"]/' | uniq -c | sort -r
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment