Quote:
Originally Posted by ibu
@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é"