I have trouble dealing with spaces in Macros when I execute a shell command.
In my macro I have the following command as an example
Sub TEST
Shell " bash -c ‘/usr/bin/emacs /home/testuser/Path With Space/Readme.txt’"
End Sub
There is no way for me to escape the spaces in
" path with space ".
and emacs opens but therefore cannot find the the file Readme.txt.
I tried all the valid bash escapes bhut it seems to clash with libreoffices shell command in macros which requires doublequotes and negates all valid bash escapes
How do I make the spaces be ignored in the path name so9 that emacs find the file ?