Skip to content

Instantly share code, notes, and snippets.

@rileyjshaw
Created March 29, 2023 23: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 rileyjshaw/189fb0b3029bf34d30c38de982cff2c8 to your computer and use it in GitHub Desktop.
Save rileyjshaw/189fb0b3029bf34d30c38de982cff2c8 to your computer and use it in GitHub Desktop.
Multiple shell `say` instances at once
curl https://raw.githubusercontent.com/dariusk/corpora/master/data/technology/new_technologies.json | jq '.technologies[]' | while read technology; do say -v zarvox "$technology" & done
say -v '?' | awk '{print $1}' | while read voice; do say -v "$voice" "We are in your computer!" & done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment