<div dir="ltr"><div>I'm switched to start/0 and using init:get_plain_arguments(), and using -extra instead of --. It works now!</div><div><br></div><div>Source:</div><div><br></div><div><a href="https://github.com/mcandre/ios7crypt/tree/master/erlang">https://github.com/mcandre/ios7crypt/tree/master/erlang</a><br>
</div><div><br></div><div>Test:</div><div><br></div><div><div><font face="courier new, monospace">$ make</font></div><div><font face="courier new, monospace">erlc -Wall +debug_info ios7crypt.erl</font></div><div><font face="courier new, monospace">erl -noshell -s ios7crypt -extra -e monkey</font></div>
<div><font face="courier new, monospace">1104160b1c1712</font></div><div><font face="courier new, monospace">erl -noshell -s ios7crypt -extra -d 020b0b55000316</font></div><div><font face="courier new, monospace">monkey</font></div>
</div><div><br></div><div>Now that my code seems to work, I took a look with dialyzer for potential trouble spots. I'm not sure what to make of the output.$ make lint</div><div><br></div><div>Dialyzer:</div><div><br></div>
<div><font face="courier new, monospace">erlc -Wall +debug_info ios7crypt.erl</font></div><div><font face="courier new, monospace">dialyzer *.beam --build_plt --quiet</font></div><div><font face="courier new, monospace">dialyzer *.beam</font></div>
<div><font face="courier new, monospace">  Checking whether the PLT /Users/andrew/.dialyzer_plt is up-to-date... yes</font></div><div><font face="courier new, monospace">  Proceeding with analysis...</font></div><div><font face="courier new, monospace">ios7crypt.erl:60: The pattern 'true' can never match the type 'false'</font></div>
<div><font face="courier new, monospace">...</font></div><div><br></div><div>In particular, I'm confused what dialyzer doesn't like about line 60.</div><div><br></div><div><div><font face="courier new, monospace">59  FirstOne = case is_binary(FirstTemp) of</font></div>
<div><font face="courier new, monospace">60    true -> binary_to_list(FirstTemp);</font></div><div><font face="courier new, monospace">61    false -> FirstOneRaw</font></div><div><font face="courier new, monospace">62  end,</font></div>
</div><div><br></div><div>Not sure what's wrong. I tried using `_` instead of `false`, but got the same warning. Should I use an if/else instead of case?</div><div><br></div></div><div class="gmail_extra"><br><br><div class="gmail_quote">
On Thu, Nov 14, 2013 at 3:39 AM, Jachym Holecek <span dir="ltr"><<a href="mailto:freza@circlewave.net" target="_blank">freza@circlewave.net</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
# Andrew Pennebaker 2013-11-13:<br>
> I'm trying to get my command line Erlang program [...]<br>
<br>
Not sure it fits your use case, but escript might come in handy:<br>
<br>
  $ cat /tmp/foo<br>
  #!/home/jh/R16B01/bin/escript<br>
<br>
  main(Args) -><br>
          io:format("~p~n", [Args]),<br>
          init:stop().<br>
<br>
  $ /tmp/foo hi there<br>
  ["hi","there"]<br>
<br>
See 'erl -man escript'.<br>
<br>
BR,<br>
        -- Jachym<br>
</blockquote></div><br><br clear="all"><div><br></div>-- <br><div></div>Cheers,<div><br></div><div>Andrew Pennebaker</div><div><a href="http://www.yellosoft.us" target="_blank">www.yellosoft.us</a></div>
</div>