+ script printing and querying the history

This commit is contained in:
Reinhard Pointner 2012-11-12 14:19:53 +00:00
parent 24983bdd41
commit d6b8c187a0
1 changed files with 16 additions and 0 deletions

View File

@ -0,0 +1,16 @@
// 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)
}