From 0f2ce0a089737453710c9d563633a89114ead35f Mon Sep 17 00:00:00 2001 From: Loren McIntyre Date: Sun, 25 Oct 2020 23:58:42 -0700 Subject: [PATCH] sheet/say: Escaping/quoting special shell character for help --- sheets/say | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sheets/say b/sheets/say index 95169fd..1ad690a 100644 --- a/sheets/say +++ b/sheets/say @@ -11,10 +11,10 @@ say -f filename.txt say -v voice -r words_per_minute "I'm sorry Dave, I can't let you do that." # List the available voices. -say -v ? +say -v '?' # Hear the available voices. -say -v ? | awk '{ print $1 }' | while read v; do echo "$v is speaking..."; say -v $v "Hi, my name is $v"; done +say -v \? | awk '{ print $1 }' | while read v; do echo "$v is speaking..."; say -v $v "Hi, my name is $v"; done # Create an audio file of the spoken text. say -o filename.aiff "Here's to the Crazy Ones."