i'm trying to use a named pipe with prince by giving the pipe name as the file argument, but prince always exits with an error:
simpy cat'ing the html file into the pipe can cause the error:
whereas piping the html into prince works fine:
$ prince -o out.pdf myfifo
prince: myfifo:1: error: Document is empty
prince: myfifo:1: error: Start tag expected, '<' not found
prince: myfifo: error: could not load input file
prince: error: no input documents to process
simpy cat'ing the html file into the pipe can cause the error:
$ cat myhtml > myfifo
whereas piping the html into prince works fine:
$ cat myhtml | prince - -o out.pdf