I wrote a small shell script which performs string operations, but I can't pass strings containing spaces to it as it thinks I am passing separate arguments. Is there any way to send a string containing a space?
Shell script help
Miscellaneous Forums/General Discussion/Shell script help Enclose it on " "
Or in Linux/Mac you can "escape" spaces using "\ ". Of course for obvious reasons, this doesn't work on Windos.
Many thanks, gents.