View Single Post
Old 06-21-2008, 12:40 PM   #2
JeffElkins
Guru
JeffElkins is no ebook tyro.JeffElkins is no ebook tyro.JeffElkins is no ebook tyro.JeffElkins is no ebook tyro.JeffElkins is no ebook tyro.JeffElkins is no ebook tyro.JeffElkins is no ebook tyro.JeffElkins is no ebook tyro.JeffElkins is no ebook tyro.JeffElkins is no ebook tyro.
 
JeffElkins's Avatar
 
Posts: 780
Karma: 1416
Join Date: Jan 2008
Device: Kobo Clara 2E/HD, Kindle PW
Quote:
Originally Posted by kad032000 View Post
Is there a way to use the pdftohtml program that comes with calibre to convert multiple files at once?
I call a bash script:

$doloop pdftohtml

Quote:
#!/bin/bash
#doloop script
OPERATION=$1
for file in ./*
do
$OPERATION $file
done
exit 0
JeffElkins is offline   Reply With Quote