Cómo eliminar cada espacio en una cuerda en Bash
#!/bin/bash
#Make our variable
var="foo bar"
#Print it without the spaces
echo ${var//[[:blank:]]/}
#Output will be foobar
HuffleGamer123