View Single Post
Old 05-17-2011, 04:39 AM   #9
ternyk
Member
ternyk began at the beginning.
 
Posts: 10
Karma: 10
Join Date: Feb 2011
Device: Kindle 3
OK. I've done it. In case someone will be looking for something similiar I'm putting the script.


#!/bin/sh

mkdir opf_tmp

while read id isbn ; do
echo "$id $isbn"
fetch-ebook-metadata -o OPF -i "$isbn" > ./opf_tmp/"$isbn"
calibredb set_metadata "$id" "./opf_tmp/$isbn"
done < <(calibredb list)
ternyk is offline   Reply With Quote