ed bierly writes: > looking for a command that i could associate with my red J icon to start > the jhs server and browser without having to paste the url as required with > this > > ./bin/jconsole ~addons/ide/jhs/core.ijs -js " init_jhs_'' "
Here's the shell script that I use under MacOS X for launching J and the browser automatically: -- /usr/local/bin/jhs ------------------------------------------------------- #!/bin/bash (sleep 5; open -a "Google Chrome" http://127.0.0.1:65001/jijx) & /Applications/j64-701/bin/jconsole ~addons/ide/jhs/core.ijs -js " init_jhs_'' " ------------------------------------------------------------------------------ For some other Unix, you'd have to replace "open" by something appropriate. Konrad. ---------------------------------------------------------------------- For information about J forums see http://www.jsoftware.com/forums.htm
