麦克+ linux执行jar文件?

发布于 2024-10-12 01:36:56 字数 143 浏览 6 评论 0原文

这可以在 linux + mac 上运行吗?我没有测试计算机,但根据您的经验,这可以吗?

运行jar(mac&linux).sh

#!/bin/sh
java -jar client.jar $*

Will this work on both linux + mac? I don't have a test computer but from your experiences will this do?

Run jar(mac&linux).sh

#!/bin/sh
java -jar client.jar $*

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

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

发布评论

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

评论(2

以歌曲疗慰 2024-10-19 01:36:56

您需要的是 "$@",而不是 $*。并且不要忘记使脚本本身可执行。

​Y​o​u want "$@", not $*.​ And don't forget to make the script itself executable.

虚拟世界 2024-10-19 01:36:56

您可能想要创建清单文件(确保您指定的位置也有 jar 文件),然后您可以运行: java -jar [your_full_path}/[you_jar_file_name].jar

You may want to create manifest file (make sure you have the jar files in the location your specifying too) and then you can run: java -jar [your_full_path}/[you_jar_file_name].jar

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