Hello,

I currently try to make the LaTeX.jl package from rened windows friendly. 
However I run into problems because of julias command interplation.

I try to open a pdf file in some pdf viewer. In windows you can do that 
with following command

start "" SOME_DOCUMENT.pdf

However spawn(`start "" $pdfname`)
will result in

start '' 'SOME_DOCUMENT.pdf'

Double quotes have been replaced by single quotes and the string was also 
encapsulated by quotes (looks like because of the presence of backslashes).

So my questions are: 
1) Is there a workaround or some way to manipulate how quotes are handles. 
Guess some way to execute a raw command line would be enough.
2) Is this a bug in Julia.

Thanks!

Florian

Reply via email to