麦克+ linux执行jar文件?
这可以在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您需要的是
"$@"
,而不是$*
。并且不要忘记使脚本本身可执行。You want
"$@"
, not$*
. And don't forget to make the script itself executable.您可能想要创建清单文件(确保您指定的位置也有 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