工欲善其事,必先利其器之—MAC下搭建groovy的开发环境

前置环境

JDK的安装以及其环境配置

相关SDK

安装groovy SDK
使用homebrew安装groovy

brew install groovy

查看一下已经安装的groovy的版本

luogw@luogw-MacBook-Pro notes$ groovy --version
Groovy Version: 2.5.0 JVM: 1.8.0_172 Vendor: Oracle Corporation OS: Mac OS X

命令行的环境

写groovy脚本(文件后缀名为groovy),直接使用groovy命令运行脚本文件即可
groovy的使用帮助如下所示:

luogw@luogw-MacBook-Pro notes$ groovy -h
Usage: groovy [options] [filename] [args]
The Groovy command line processor.
      -cp, -classpath, --classpath=
                             Specify where to find the class files - must be first
                               argument
  -D, --define=
                             Define a system property
      --disableopt=optlist[,optlist...]
                             Disables one or all optimization elements; optlist can
                               be a comma separated list with the elements:
                             all (disables all optimizations),
                             int (disable any int based optimizations)
  -d, --debug                Debug mode will print out full stack traces
  -c, --encoding=   Specify the encoding of the files
  -e= 
                    
                    

你可能感兴趣的:(开发环境,工具效率,开发工具,工欲善其事,必先利其器,groovy)