// 監査ログ.xls CSV変換スクリプト
@GrabResolver("https://github.com/kobo/maven-repo/raw/master/release")
@Grab("org.jggug.kobo:gexcelapi:0.2")
import org.jggug.kobo.gexcelapi.GExcel

GExcel.open(args[0])

def dump = { cell -> println "${cell.label}: ${cell.value}" }
sheet.A_.each{ cell -> dump cell }

