<div dir="ltr">Which I think srand actually uses &#39;date&#39; as it&#39;s seed in this case...</div><div class="gmail_extra"><br><br><div class="gmail_quote">On Tue, Mar 19, 2013 at 10:29 PM, Jaren Stangret <span dir="ltr">&lt;<a href="mailto:sirjaren@gmail.com" target="_blank">sirjaren@gmail.com</a>&gt;</span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr">Erik,<div><br></div><div>I was thinking of doing this:</div><div>export MALLOC_PERTURB_=$(awk &#39;BEGIN { srand(); print int(rand() * 32767 % 255 + 1) }&#39;)<br>
</div><div><br></div><div>
Or would you prefer using &#39;date&#39;?</div></div><div class="HOEnZb"><div class="h5"><div class="gmail_extra"><br><br><div class="gmail_quote">On Tue, Mar 19, 2013 at 10:22 PM, Erik de Castro Lopo <span dir="ltr">&lt;<a href="mailto:mle+la@mega-nerd.com" target="_blank">mle+la@mega-nerd.com</a>&gt;</span> wrote:<br>

<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div>Jesse Weinstein wrote:<br>
<br>
&gt; The subject line mostly says it all, but for reference, having #!/bin/sh causes the following error:<br>
&gt;<br>
&gt; arithmetic expression: expecting primary: &quot; % 255 + 1&quot;<br>
<br>
</div>Arithmetic support is actually not the issue, rather its that dash/sh<br>
doesn&#39;t support $RANDOM. The solution to this is to replace $RANDOM<br>
with $(date +%N) which is obviouslsy not all that random, but which<br>
is close enough to random for this usage.<br>
<br>
Since Jaren is in the process of making the scripts POSIX shell<br>
compliant, I think swicthing to bash is a bad idea :-).<br>
<br>
I was going to do the $RANDOM to $(date +%N) conversion after Jaren&#39;s<br>
POSIX patches were all applied.<br>
<br>
Cheers,<br>
Erik<br>
<span><font color="#888888">--<br>
----------------------------------------------------------------------<br>
Erik de Castro Lopo<br>
<a href="http://www.mega-nerd.com/" target="_blank">http://www.mega-nerd.com/</a><br>
</font></span><div><div>_______________________________________________<br>
flac-dev mailing list<br>
<a href="mailto:flac-dev@xiph.org" target="_blank">flac-dev@xiph.org</a><br>
<a href="http://lists.xiph.org/mailman/listinfo/flac-dev" target="_blank">http://lists.xiph.org/mailman/listinfo/flac-dev</a><br>
</div></div></blockquote></div><br></div>
</div></div></blockquote></div><br></div>