Created
March 29, 2023 23:26
-
-
Save rileyjshaw/189fb0b3029bf34d30c38de982cff2c8 to your computer and use it in GitHub Desktop.
Multiple shell `say` instances at once
This file contains 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
curl https://raw.githubusercontent.com/dariusk/corpora/master/data/technology/new_technologies.json | jq '.technologies[]' | while read technology; do say -v zarvox "$technology" & done |
This file contains 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
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