mirror of
https://github.com/mitb-archive/filebot
synced 2024-11-05 08:55:08 -05:00
17 lines
543 B
Groovy
17 lines
543 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) } && to.exists()
|
|
}
|
|
|
|
|
|
getRenameLog(true).each { from, to ->
|
|
if (accept(from, to))
|
|
println template.make(from:from, to:to)
|
|
}
|