mirror of
https://github.com/mitb-archive/filebot
synced 2024-11-11 03:45:06 -05:00
9 lines
222 B
Groovy
9 lines
222 B
Groovy
// filebot -script "http://filebot.sourceforge.net/data/shell/renall.groovy" <options> <folder>
|
|
|
|
/*
|
|
* Rename all tv shows, anime or movies using given or default options
|
|
*/
|
|
args.eachMediaFolder {
|
|
rename(folder:it)
|
|
}
|