<div dir="ltr"><div><div>Nothing wrong at all.    <br><br>binfmt is both a more complex and a more powerful approach.  It could be set up files where one cannot place a hashbang such as zo files or and often is for jar files.  While I haven&#39;t tried this, imagine you have several cloud servers and wish to &quot;promote&quot;  Racket applications and Racket utilities to each.  Certainly one could transfer up all the rkt source files OR (modulo our issues) the zo files.  Assuming the existence of zo magic values (probably there), then one could drop the zo extension and the racket binaries run as any other command without the original source files.<br>
<br></div>Arbitrary example.  I did not not mean using binfmt did anything one could not do already in the Racket tool sphere, such specifying the interpreter in the source file or creating Racket exe or ...<br><br></div>
<div>I just tend to use binfmt for a number of different non-Racket uses so I use it for Racket as well.<br><br></div><div>Sorry for the off-topic-ness.  <br></div><br><div><div><br><br></div></div></div><div class="gmail_extra">
<br><br><div class="gmail_quote">On Wed, May 8, 2013 at 12:47 PM, Manfred Lotz <span dir="ltr">&lt;<a href="mailto:manfred.lotz@arcor.de" target="_blank">manfred.lotz@arcor.de</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
<div class="HOEnZb"><div class="h5">On Wed, 8 May 2013 10:27:09 -0400<br>
Ray Racine &lt;<a href="mailto:ray.racine@gmail.com">ray.racine@gmail.com</a>&gt; wrote:<br>
<br>
&gt; On a tangent, if you run your Racket on Linux (like anyone would use<br>
&gt; anything else :0 ) you can &quot;install&quot; *.rkt files as executables with<br>
&gt; binfmt.<br>
&gt;<br>
&gt; Very Short (no validation) Path<br>
&gt;<br>
&gt; 1) Create a shell script runracket.rkt in your racket installation<br>
&gt; bin. i.e. /usr/local/racket/bin/runracket<br>
&gt; #! /bin/sh<br>
&gt;<br>
&gt; racket -tm $1<br>
&gt;<br>
&gt; 2) Use your package manager to install binfmt.<br>
&gt;<br>
&gt; 3) Register .rkt files as executables handled by runracket.  As root:<br>
&gt;<br>
&gt; a) cd /proc/sys/fs/binfmt_misc/<br>
&gt; b) echo &#39;:RunRacket:E::rkt::/usr/local/racket/bin/runracket:&#39; &gt;<br>
&gt; register<br>
&gt;<br>
&gt; 4) Have a sherbet.<br>
&gt;<br>
&gt; Then assuming you have a simple helloworld.rkt file with a &quot;main&quot; your<br>
&gt; Racket file is now just another shell or executable.<br>
&gt;<br>
&gt; ray@rpr:~$ ./helloworld.rkt<br>
&gt; Hello there.<br>
&gt;<br>
&gt; Obviously the above should be made more robust, adjusted be installed<br>
&gt; on bootup etc, but that is the basic idea.<br>
&gt;<br>
&gt; Decent odds a Mac can do this as well.  Better odds Eli has something<br>
&gt; done along these lines polished to perfection. : )<br>
&gt;<br>
&gt; To remove the entry echo -1 to the entry.<br>
&gt;<br>
&gt; $ echo -1 RunRacket<br>
&gt;<br>
&gt;<br>
&gt;<br>
<br>
</div></div>Thank you. Didn&#39;t know about binfmt.<br>
<br>
<br>
But why not just this:<br>
<br>
#! racket -t<br>
#lang racket<br>
<br>
(displayln &quot;Hi world!&quot;)<br>
<br>
<br>
I saved it into rscript.sh, changed perms to 755 and it ran without<br>
problem.<br>
<div class="HOEnZb"><div class="h5"><br>
<br>
--<br>
Manfred<br>
<br>
<br>
<br>
____________________<br>
  Racket Users list:<br>
  <a href="http://lists.racket-lang.org/users" target="_blank">http://lists.racket-lang.org/users</a><br>
</div></div></blockquote></div><br></div>