English 中文(简体)
Groovy 脚本可执行文件
原标题:Groovy script executable
  • 时间:2012-05-24 00:29:29
  •  标签:
  • shell
  • groovy

我想把我的可爱的脚本 便携式,我插入第一行:

#!/usr/bin/env groovy

当我在它的目录之外运行脚本时, 问题就出现了, 它找不到图书馆 。 我来自 Python 世界, 并且从 Python 中导入了所有元素, 解决相对的脚本路径 。 在 roovy 中, 我似乎必须指定 - 类型路径, 但是在第一行中我做不到!!

如何解决这个问题,有什么建议吗?

问题回答

如果图书馆存储在马文存储库中,而该存储库无论在哪里都可以进入,那么一个解决办法就是使用Grape 来抓取图书馆。

这提供若干福利:

  1. You don t have to worry about the classpath at all
  2. You don t have to distribute the libraries — just make sure Groovy is available on the client
  3. Libraries are downloaded just once, so even if you upgrade the application, you only have to redistribute the .groovy file.

一个简单的例子:

#!/usr/bin/env groovy

@Grab(group= commons-io , module= commons-io , version= 2.3 )
import org.apache.commons.io.FileUtils

... use FileUtils like normal ...

s 在mvnrepossitory.com 上有很多现有的图书馆。

即使你有非公共图书馆,也比较容易将你自己的图书馆放入本地/私人仓库





相关问题
KornShell- Creating a fixed width text file

I need to create a simple fixed width text file in KornShell (ksh). My current attempt using printf to pad the string isn t working out very well. What s the shortest, cleanest way to create a fixed ...

unix find command

how to use the find command to find files/directories which are not matching the pattern. for eg: find <some options > -name "dontfile.txt" should give me output of all the find whose file ...

encoding of file shell script

How can I check the file encoding in a shell script? I need to know if a file is encoded in utf-8 or iso-8859-1. Thanks

Case insensitive comparison of strings in shell script

The == operator is used to compare two strings in shell script. However, I want to compare two strings ignoring case, how can it be done? Is there any standard command for this?

1. 露台式照像

在Windows XP中,没有一时出现指挥时,是否有办法操作一种灰色文字? 我常常需要把“善待”(工作)与“灰色”同起来,即使我的文字没有产出,......

热门标签