Quote:
Originally Posted by Starson17
It won't take the wildcard. Two options I can think of - use the FOR loop in a batch file (or script a loop), or use SED to change the UND to EN.
|
You don't strictly need to do a batch file. The command typed at the command line would be:
for %f in (*.epub) do ebook-meta %f -l en
This will find all the .epub files in the current folder and run the command after the "do" on each one.