当我做了groovy,我得到以下的输出
/usr/local/bin/groovy
所以我继续创建了一个helloworld.groovy,具有以下内容
#!/usr/local/bin/groovy println "hello world"
之后,我做了chmod x helloworld.groovy,并试图运行./hellworld.groovy的文件,可悲的是,我得到这个错误./helloworld.groovy:第2行:print:command not found
我可以通过改变来摆脱错误
#!/usr/bin/env groovy println "hello world"
你需要运行这样的脚本:
原文链接:https://www.f2er.com/bash/387741.htmlgroovy helloworld.groovy