There is not difference between ' and " from called program point of view. Both strings are passed as one argv zero byte terminated string. Program can't get knowledge which sort of quotes was used. There is only difference from shell's point of view. What sort of shell you use?<br>
<br><div class="gmail_quote">On Tue, May 6, 2008 at 7:08 AM, Bengt Kleberg <<a href="mailto:bengt.kleberg@ericsson.com">bengt.kleberg@ericsson.com</a>> wrote:<br><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
Greetings,<br>
<br>
Are you sure about<br>
<div class="Ih2E3d">erl -s foo Jarrod 12345 "This is a string"<br>
</div>resulting in<br>
<div class="Ih2E3d">Name: 'Jarrod', Int: 12345, Str: "This is a string"<br>
</div>?<br>
<br>
On my machine I have to use<br>
erl -s foo Jarrod 12345 'This is a string'<br>
<br>
Note the ' instead of ".<br>
<br>
<br>
When choosing between -s and -run, IMHO -run is better integrated with<br>
unix than -s (C does not have atoms).<br>
<font color="#888888"><br>
<br>
bengt<br>
</font><div><div></div><div class="Wj3C7c"><br>
On Mon, 2008-05-05 at 17:54 -0400, Jarrod Roberson wrote:<br>
><br>
><br>
> On Mon, May 5, 2008 at 5:36 PM, Edwin Fine<br>
> <<a href="mailto:erlang-questions_efine@usa.net">erlang-questions_efine@usa.net</a>> wrote:<br>
>         > I have a function start(Port, Htdocs) that I want to call<br>
>         with 8888,<br>
>         > "C:/htdocs" and I can't figure out what the appropriate<br>
>         syntax should be.<br>
><br>
>         This can be nasty to get right. It depends on how the command<br>
>         line<br>
>         interprets characters like single quote and double quote.<br>
>         It also depends on whether you use -s or -run.<br>
><br>
>         -s interprets all function arguments as atoms, so your program<br>
>         will<br>
>         get all the values as atoms. You will usually need to write a<br>
>         special<br>
>         MFA to convert the atoms to the actual types of the parameters<br>
>         desired. Note that all arguments get passed in a single list<br>
>         when<br>
>         called like this (see start_cmd_line/3).<br>
><br>
>         -run interprets all function arguments as strings, so your<br>
>         program<br>
>         will get all the values as string. You will often have to<br>
>         write a<br>
>         special MFA to convert the strings to the actual types of the<br>
>         parameters desired.<br>
><br>
>         For example:<br>
><br>
>         -module(foo).<br>
>         -export([start_cmd_line/1, start/3]).<br>
><br>
>         start_cmd_line([NameAtom, IntValue, StrValue]) when<br>
>         is_atom(NameAtom),<br>
>         is_atom(IntValue), is_atom(StrValue) -><br>
>            Name = NameAtom, % Not really necessary because NameAtom is<br>
>         already an atom<br>
>            Int = list_to_integer(atom_to_list(IntValue)), % Could<br>
>         throw an exception<br>
>            Str = atom_to_list(StrValue),<br>
>            start(Name, Int, Str).<br>
><br>
>         start(Name, Int, Str) -><br>
>            io:format("Name: ~p, Int: ~p, Str: ~p~n", [Name, Int,<br>
>         Str]),<br>
>           % Etc<br>
>           ok.<br>
><br>
>         If you started the above by<br>
><br>
>         erl -s foo Jarrod 12345 "This is a string"<br>
><br>
>         you would get an output something like this:<br>
>         Erlang (BEAM) emulator version 5.6.2 [source] [64-bit] [smp:4]<br>
>         [async-threads:0] [hipe] [kernel-poll:false]<br>
><br>
>         Name: 'Jarrod', Int: 12345, Str: "This is a string"<br>
>         Eshell V5.6.2  (abort with ^G)<br>
>         1><br>
><br>
>         Hope this helps.<br>
><br>
> thanks that clears things up greatly.<br>
><br>
><br>
</div></div><div><div></div><div class="Wj3C7c">> _______________________________________________<br>
> erlang-questions mailing list<br>
> <a href="mailto:erlang-questions@erlang.org">erlang-questions@erlang.org</a><br>
> <a href="http://www.erlang.org/mailman/listinfo/erlang-questions" target="_blank">http://www.erlang.org/mailman/listinfo/erlang-questions</a><br>
<br>
_______________________________________________<br>
erlang-questions mailing list<br>
<a href="mailto:erlang-questions@erlang.org">erlang-questions@erlang.org</a><br>
<a href="http://www.erlang.org/mailman/listinfo/erlang-questions" target="_blank">http://www.erlang.org/mailman/listinfo/erlang-questions</a><br>
</div></div></blockquote></div><br><br clear="all"><br>-- <br>--Hynek (Pichi) Vychodil