Skip to content

Instantly share code, notes, and snippets.

@pezholio
Forked from pikesley/say-the-swears.sh
Last active November 3, 2016 15:26
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 pezholio/4b4d6afcd4412b9f703390ab912fa900 to your computer and use it in GitHub Desktop.
Save pezholio/4b4d6afcd4412b9f703390ab912fa900 to your computer and use it in GitHub Desktop.
Swears on a Mac
curl https://peterkwells.github.io/known-uk-swearwords/data/swearwords.csv | tr -s '\015' '\n' | grep -v UID | cut -d ',' -f 1,2 | sed "s:\(.*\),\(.*\):number \1, \2,:" | say
# Assuming you have espeak installed (`brew install espeak` / `apt-get install espeak`)
curl https://peterkwells.github.io/known-uk-swearwords/data/swearwords.csv | tr -s '\015' '\n' | grep -v UID | cut -d ',' -f 1,2 | sed "s:\(.*\),\(.*\):number \1, \2,:" | espeak -v en-uk-wmids
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment