Klacke,<br><br>It would be nice to have that information obtainable all on one place, and displayed on the shell prompt, too. I am sure that I am stating the obvious here, but I'll do it anyway. I am just guessing, but I see a correlation between the last digit of the erts version (e.g. 5.6.1 -> 1) and the actual release. When I used R12B-3, erts was <a href="http://5.6.3.">5.6.3.</a> Now I am using R12B-4, and erts is <a href="http://5.6.4.">5.6.4.</a> So I suppose a reasonable way (that is not provably correct until told otherwise) to get the release string would be<br>
<br>4> erlang:system_info(otp_release) ++ "-" ++ hd(lists:reverse(string:tokens(erlang:system_info(version), "."))).<br>"R12B-4"<br><br>On the other hand, I agree that Erlang really should provide a way to get the point release, or complete otp_release including point release, without having to grovel around in the version string<br>
<br>Regards,<br>Edwin<br><br><div class="gmail_quote">On Fri, Oct 31, 2008 at 7:59 PM, Claes Wikström <span dir="ltr"><<a href="mailto:klacke@hyber.org">klacke@hyber.org</a>></span> wrote:<br><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
<br>
Isn't it high time to replace the weird version string<br>
in the shell that says:<br>
<br>
Eshell V5.6.1  (abort with ^G)<br>
<br>
with the appropriate OTP version number. The 5.6.1 number doesn't<br>
convey a lot of info - does it. Be brave - change.<br>
<br>
<br>
Also, and worse, how do I find out which OTP version I'm<br>
actually running.<br>
<br>
1> erlang:system_info(version).<br>
"5.6.1"<br>
2> erlang:system_info(otp_release).<br>
"R12B"<br>
3><br>
<br>
<br>
Crucial info missing there. R12B what? Enlighten me please.<br>
<br>
So, two things that need to be fixed:<br>
<br>
1. Shell prompt<br>
2. Last number in OTP release number is not possible to find out<br>
<br>
<br>
/klacke<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>
<br>
</blockquote></div><br>