1
0
mirror of https://github.com/mitb-archive/filebot synced 2024-08-13 17:03:45 -04:00
filebot/website/scripts/extract.groovy
Reinhard Pointner 37570fce74 * update scripts
* remove generated files
2012-02-27 09:56:15 +00:00

11 lines
247 B
Groovy

// filebot -script "http://filebot.sf.net/scripts/extract.groovy" <folder>
/*
* Auto-extract all zip and rar archives.
*/
args.getFiles{ it.isArchive() }.each {
def output = extract(file:it)
output.each{ println "Extracted: " + it.path }
}