I want to use pdftotext (the linux tool) to extract text from a pdf
file.
pdftotext produces a text file with the content, but I want it to
output the text on screen. how can I do that?
thanks you
Either use a second command like "cat" or "less" in order to display the
generated text file or simply specify the standard output as destination
(optional second parameter) as follows:
pdftotext infile.pdf -
(cf. http://en.wikipedia.org/wiki/Hyphen#Hyphens_in_computing)
Ad astra, Markus
you are my hero! this works perfect!!!
as always: per aspera :)