使用Kotlin实现命令行工具

参数用args变量表示,这是数组。

示例:

#!/usr/bin/env groovy

for ( arg in args) {
    println arg
}

增加执行权限:

chmod a+x xx

执行:

./xx