0
path
からファイルをgrepしたいと思います。どのようにグルーヴィーな方法でそれを行うのですか?各ファイルが見つかった単語の数はどのように数えられますか?ファイル内のGroovy grep単語
import groovy.io.FileType
def splitStatements() {
String path = "C:\\Users\\John\\test"
def result = new AntBuilder().fileset(dir: path) {
containsregexp expression:['END','BEGIN']
}*.file
println result
}
splitStatements()