a string com garbble nela - >
$ x="The Raven ƒÆ’¢â‚¬â€œ With Basil Gabbi"
isso mantém todas as letras maiúsculas e minúsculas a-z remove todo o resto
$ echo ${x//[^A-Za-z ]/}
deixando a string como esta
The Raven With Basil Gabbi
ficaria parecido com este script
title=${TITLE1}
## holds on to normal chars rid the rest
title=${title//[^A-Za-z ]/}