Forum How do I...?

Pipe stdout to Prince?

ollieman
Is this possible?
markdown file.text | prince file.pdf


Or does prince require a file on disk?
mikeday
Sure, try this:
markdown file.text | prince -o file.pdf -

The hyphen "-" represents stdout or stdin.
ollieman
Awesome, thank you.