mirror of
https://github.com/mitb-archive/filebot
synced 2024-11-11 03:45:06 -05:00
6d341807d4
=> changed -Xa=x -Xb=y... to --def a=x b=y ...
11 lines
211 B
Groovy
11 lines
211 B
Groovy
// filebot -script fn:extract <folder>
|
|
|
|
/*
|
|
* Auto-extract all zip and rar archives.
|
|
*/
|
|
args.getFiles{ it.isArchive() }.each {
|
|
def output = extract(file:it)
|
|
|
|
output.each{ println "Extracted: " + it.path }
|
|
}
|