nohup:无法运行命令'java':没有这样的文件或目录

时间:2017-11-01 12:57:43

标签: java shell

我想通过shell脚本运行java应用程序。下面是我的demo shell脚本。 nohup java -cp .:$CLASSPATH com.xx.xx.App >> path/to/xx.log & 但得到这个错误: nohup: failed to run command ‘java’: No such file or directory 有人可以解决这个问题吗? THX!

1 个答案:

答案 0 :(得分:1)

我通过将此行添加到我的shell脚本来解决了这个问题。 class MyLogin extends Polymer.Element { static get is() { return 'my-login'; } // the function is inside the class login() { // define whatever this function does... } } customElements.define(MyLogin.is, MyLogin); 此方法是重装系统环境。然后shell脚本可以使用 java 命令。