1
0
mirror of https://github.com/mitb-archive/filebot synced 2024-08-13 17:03:45 -04:00
filebot/website/scripts/watcher.groovy

10 lines
288 B
Groovy
Raw Normal View History

// filebot -script fn:watcher /path/to/folder/ --output /output/folder/ --format <expression>
// watch folders and print files that were added/modified
args.watch { changes ->
rename(file:changes)
2011-12-19 21:39:33 -05:00
}
2011-12-01 12:06:51 -05:00
println "Waiting for events"
2011-12-19 21:39:33 -05:00
console.readLine() // keep running and watch for changes