--- In [email protected], Brother Gabriel-Marie <brgabr...@...> wrote: > > I have a console application that I want to send a command to, but I > can't seem to break out of PP's escape characters > Here is the command I want to send literal, with the quotes around > param2 and the spaces between. > Can't I just do a RUN or something? > > What I need to send: > C:\folder\app.exe param1 "param2" param3 > > I tried this but it doesn't work > C:/folder/app.exe param1 \"param2\" param3 >
Try: do(?"C:\folder\app.exe", ?Zparam1 "param2" param3Z) Any character can serve as the delimiter for a literal string, it just can't occur anywhere in the string. So if you have any Z's in the string, using something else. Regards, Sheri
