Sometimes I am writing code, and I need to go back and quote something...
foo=$this/$that/$other
What I wanted was this: foo="$this/$that/$other"
What I end up with is this foo=""$this/$that/$other
How do I prevent that, I know I can delete one, but it sometimes gets strange, and puts another one back in, or other oddness. It is really rough when you are in the middle of a regex string, and it starts messing with you.
Thanks -- Scott