I need to be able to do is replace a space () with a dot (.) in a string in bash.
.
I think this would be pretty simple, but I\'m new so I ca
Use parameter substitution:
string=${string// /.}