View Single Post
Old 08-11-2013, 11:30 AM   #10
roger64
Wizard
roger64 ought to be getting tired of karma fortunes by now.roger64 ought to be getting tired of karma fortunes by now.roger64 ought to be getting tired of karma fortunes by now.roger64 ought to be getting tired of karma fortunes by now.roger64 ought to be getting tired of karma fortunes by now.roger64 ought to be getting tired of karma fortunes by now.roger64 ought to be getting tired of karma fortunes by now.roger64 ought to be getting tired of karma fortunes by now.roger64 ought to be getting tired of karma fortunes by now.roger64 ought to be getting tired of karma fortunes by now.roger64 ought to be getting tired of karma fortunes by now.
 
Posts: 2,625
Karma: 3120635
Join Date: Jan 2009
Device: Kindle PW3 (wifi)
Quote:
Originally Posted by ibu View Post
@mrmikel
Thanks for the hints.
Is there (on Windows) a comfortable way to "send" the epub, which is active in Sigil, directly to ePubChecker?

With Linux, I use a bash script to launch Epubcheck with a right-click. The result of the check is a plain text file, containing either "No error" or the text of the errors. There is no need for a G.U.I.

Code:
#!/bin/bash

# dependencies: zenity, j.r.e.

#Write here where is located your version of epubcheck on your comp:

REPERTOIRE_SOURCE="/home/roger/Téléchargements/Non_installés/epubcheck-3.0.1/"

name=$(zenity --entry --title "Nom EPUB" --text "Nom de votre EPUB" --entry-text=Nom?)
echo "name=$name"

java -jar "$REPERTOIRE_SOURCE"epubcheck-3.0.1.jar "${name}".epub &>"${name}".txt

echo "Terminé"
zenity --info --text "Terminé"
roger64 is offline   Reply With Quote