I have installed a virtual PDF printer using cups-pdf. It shows up as PDF when listing available printers using lpstat -a
Now I am trying to run a simple following command to save a simple line to a new pdf file
echo "Hello world" | lp -p PDF > output.pdf
But on reading the output.pdf using cat, it displays:
request id is PDF-7 (0 file(s))
why is it not printing "hello world"?