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
Try this
echo "hello world" | sed 's/ /./g'