I have a function that has my EV3 speak
speak(){ espeak -a 200 -s 130 -v la --stdout "$@" | aplay; }
it works by simply
speak "Say this"
I want it to say the contents of a file, so I have this
printf '%b\n' "$(cat joyPhrase)"
How do get the output from the printf into the quotes for speak?