<div class="gmail_quote"><blockquote class="gmail_quote" style="margin: 0pt 0pt 0pt 0.8ex; border-left: 1px solid rgb(204, 204, 204); padding-left: 1ex;"> 
 ~ >./args one two "three  and four are one argument"<br>
  Args=["one","two","three","and","four","are","one","argument"]<br>
<br>
The escript manpage (e.g. <a href="http://www.erlang.org/doc/man/escript.html" target="_blank">http://www.erlang.org/doc/man/escript.html</a>) claims<br>
<br>
  the main/1 function will be called with a list of strings<br>
  representing the arguments given to the script (not changed or<br>
  interpreted in any way).<br>
<br>
which is why I was expecting<br>
<br>
  Args=["one","two","three  and four are one argument"]<br>
<br>
How can I get the arguments without Erlang changing and interpreting them?<br>
<br>
Matt<br></blockquote><div><br>./args one two 'three and four are one argument'<br><br>r.<br></div></div>