the copied URL can sometimes have unwanted characters, such as
",','
etc. I want the script to replace all of those with spaces.
Você pode usar sed
para isso.
Se a sua variável $url
for algo como isto:
echo $url
http://1f,oo"2b'a'r.com
Este sed
substitui todos os caracteres "indesejados" por espaços:
echo $url | sed 's/[^a-zA-Z0-9:/\.]/ /g'
http://1f oo 2b a r.com