Created
January 30, 2013 23:13
-
-
Save piercemoore/4678240 to your computer and use it in GitHub Desktop.
A command to see how much profanity your team has used in all the commit messages for a repository.
This file contains hidden or 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
| git log --pretty=format:'%s' | tr '[:upper:]' '[:lower:]' | tr '[:space:]' '\n' | sort | uniq -c | sort -nr | grep -iE "(fuck|shit|bitch|damn|hate|ugly|stupid|asshole|moron|eff|worthless|piss)" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment