mirror of
https://github.com/mitb-archive/filebot
synced 2024-11-05 08:55:08 -05:00
37570fce74
* remove generated files
11 lines
247 B
Groovy
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 }
|
|
}
|