What is the correct way of passing a quotation mark as an argument to Clozure CL's run-program? Take the simple example of calling echo ", which should return ".
However, when I try to run this command by using ccl:run-program as shown below, the following string is returned: "\\" rather than "\"". Any ideas on how to tackle this issue? The final goal is to pass a string surrounded by quotation marks to the program as argument.
(with-output-to-string (stream)
(ccl:run-program "echo" (list "\"") :output stream)
)
When trying your code, I see the following output:
But some characters are escaped in Common Lisp strings, so in order to be sure about what the string holds, here are different options:
or,
So as far as I can tell, the output is as desired.