Re: [racket-users] Racket -script running other Racket scripts

2016-08-21 Thread Ben Greenman
I would use `system*` or `process*` with `(find-exe)` [1] as the first argument. You might also like `find-console-bin-dir` [2]. [1] http://docs.racket-lang.org/raco/exe.html#%28def._%28%28lib._compiler%2Ffind-exe..rkt%29._find-exe%29%29 [2]

[racket-users] Racket -script running other Racket scripts

2016-08-21 Thread Pekka Niiranen
Hello users, I am trying to eradicate *.bat files running Racket scripts. What is the idiom to make Racket script to start itself recursively (system, process, subprocess) when main script is started from shell and all outputs are printed to console? "racket mscript.rkt args" => (system *.bat)