Rhino 有预加载脚本吗?

发布于 2024-10-07 17:44:52 字数 165 浏览 5 评论 0原文

我目前正在开发一些JavaScript软件,经常需要在Rhino中加载它。有没有办法创建一个 bash 脚本或其他东西,让 Rhino 在启动时加载我的软件?

目前,每次我想以交互方式测试某些内容时,我都必须输入 load("path/to/file.js"),但我不愿意。

I am currently developing some JavaScript software and often have to load it up in Rhino. Is there a way I can create a bash script or something to have Rhino load up my software when it launches?

Currently, I have to type load("path/to/file.js") every time I want to test something interactively, and I'd rather not.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

安穩 2024-10-14 17:44:52

如果您使用 JDK 中的 jrunscript.exe,您应该能够在交互模式启动之前指定要评估的文件,如下所示:

jrunscript -f /path/to/file1.js -f /another/file2.js -f -

现在交互模式应该在已加载的 的上下文中启动>file1.jsfile2.js

If you use the jrunscript.exe from your JDK you should be able to specify the files to evaluate before the interactive mode starts, like so:

jrunscript -f /path/to/file1.js -f /another/file2.js -f -

Now the interactive mode should start in the context of a loaded file1.js and file2.js.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文