1
0
mirror of https://github.com/mitb-archive/filebot synced 2024-11-05 08:55:08 -05:00
filebot/website/scripts/history.groovy
2012-11-12 14:19:53 +00:00

17 lines
528 B
Groovy

// filebot -script fn:history --format "$from => $to"
// use --format parameter to specify your own output format
def format = _args.format ?: '[$from.name] => [$to.name]'
def template = new groovy.text.GStringTemplateEngine().createTemplate(format)
// use args to list history only for the given folders if desired
def accept(from, to) {
args.empty ? true : args.find{ to.absolutePath.startsWith(it.absolutePath) }
}
getRenameLog(true).each { from, to ->
if (accept(from, to))
println template.make(from:from, to:to)
}