Code Monkey home page Code Monkey logo

Comments (5)

rdeltour avatar rdeltour commented on August 15, 2024

From [email protected] on August 11, 2008 09:55:22

i can get non-error outputs to go to a text file using '>>', but errors seem to go
straight to the screen and not show in the text file.

I'm calling the epubcheck tool from perl so i can process an entire directory, and
although its easy enough to copy and paste the errors, it would make life easier to
be able to pipe the error output.

Attachment: check.bat

from epubcheck.

rdeltour avatar rdeltour commented on August 15, 2024

From [email protected] on August 11, 2008 10:55:34

Hello,
Your problem occurs because by default, only stdout (standard output - System.out.print) is redirected by the
redirection arrow operator (>). Epubcheck, however, uses stderr (standard error output - System.err.print) to
display errors to console.
If you want to have stderr (only) redirected to file, use the error redirection arrow operator (2>) instead.
If you want to have both stdout and stderr in the file, use the redirection arrow operator (>), but add this as
an argument after the file name: 2>&1 This will let redirect both outs to your text file. For the sake of clarity,
here is an example:

STDOUT only:
java -jar epubcheck.jar test_epub.epub > logfile.txt

STDERR only:
java -jar epubcheck.jar test_epub.epub 2> logfile.txt

STDOUT & STDERR
java -jar epubcheck.jar test_epub.epub > logfile.txt 2>&1

Hope that solves your problem!

Piotr

Status: Invalid

from epubcheck.

rdeltour avatar rdeltour commented on August 15, 2024

From [email protected] on August 11, 2008 11:00:28

Thanks, it seems to work.

from epubcheck.

rdeltour avatar rdeltour commented on August 15, 2024

From [email protected] on August 11, 2008 09:55:22

i can get non-error outputs to go to a text file using '>>', but errors seem to go
straight to the screen and not show in the text file.

I'm calling the epubcheck tool from perl so i can process an entire directory, and
although its easy enough to copy and paste the errors, it would make life easier to
be able to pipe the error output.

Attachment: check.bat

from epubcheck.

rdeltour avatar rdeltour commented on August 15, 2024

From [email protected] on August 11, 2008 10:55:34

Hello,
Your problem occurs because by default, only stdout (standard output - System.out.print) is redirected by the
redirection arrow operator (>). Epubcheck, however, uses stderr (standard error output - System.err.print) to
display errors to console.
If you want to have stderr (only) redirected to file, use the error redirection arrow operator (2>) instead.
If you want to have both stdout and stderr in the file, use the redirection arrow operator (>), but add this as
an argument after the file name: 2>&1 This will let redirect both outs to your text file. For the sake of clarity,
here is an example:

STDOUT only:
java -jar epubcheck.jar test_epub.epub > logfile.txt

STDERR only:
java -jar epubcheck.jar test_epub.epub 2> logfile.txt

STDOUT & STDERR
java -jar epubcheck.jar test_epub.epub > logfile.txt 2>&1

Hope that solves your problem!

Piotr

Status: Invalid

from epubcheck.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.