|
__Q:__ Why is that when I execute the command: %%% ==./pdfTonto -f booklet in.pdf outbooklet.pdf== %%% nothing happens? (nothing - no output of any kind, the program hangs, there is no indication of cpu usage) __A:__ The program is waiting for input from the standard input. If you want it to read a file as input, you need to specify an input and output file using the flag options. Try using: %%% ==./pdfTonto -f booklet __-i__ in.pdf __-o__ outbooklet.pdf== __A:__ The program is waiting for input. If you want it to read a file as input instead of stdin, you need to specify an input and output file using the flag options. Try using: %%% ==./pdfTonto -f booklet ##__-i__## in.pdf ##__-o__## outbooklet.pdf== %%% or if you prefer long options %%% ==./pdfTonto --filter booklet __--in__ in.pdf __--out__ outbooklet.pdf== %%% ==./pdfTonto --filter booklet ##__--in__## in.pdf ##__--out__## outbooklet.pdf== %%% or if you want to use redirection: %%% ==./pdfTonto -f booklet __<__ in.pdf __>__ outbooklet.pdf== %%% ==./pdfTonto -f booklet ##__<__## in.pdf ##__>__## outbooklet.pdf== ---- |
|