We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
You clearly know pnmtools. One of the great things about pnmtools is that it can be used in a pipe.
pnmtools
I suggest changing pdf2odt so this is possible:
pdf2odt
cat example.pdf | pdf2odt | tee example.odt | wc
This should effectively run something like:
cat example.pdf | (cat > tmpfile.pdf; pdf2odt --pdf tmpfile.pdf tmpfile.odt; cat tmpfile.odt; rm tmpfile*) | tee example.odt | wc
but should be written directly in Python.
pdf2odt example.pdf
should effectively run:
pdf2odt --pdf example.pdf example.odt
pdf2odt example.pdf - | wc
(pdf2odt --pdf example.pdf tmpfile.odt; cat tmpfile.odt; rm tmpfile.odt) |wc
but written in Python
The text was updated successfully, but these errors were encountered:
No branches or pull requests
You clearly know
pnmtools
. One of the great things aboutpnmtools
is that it can be used in a pipe.I suggest changing
pdf2odt
so this is possible:This should effectively run something like:
but should be written directly in Python.
should effectively run:
should effectively run:
but written in Python
The text was updated successfully, but these errors were encountered: