|
(Since there are no other questions in the FAQ, this question is frequently asked =] ) __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) Why is that wheb 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) My perl is in /usr/bin/ I run OS X 10.4.9 __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== %%% or if you prefer long options %%% ==./pdfTonto --filter booklet __--in__ in.pdf __--out__ outbooklet.pdf== %%% or if you want to use redirection: %%% ==./pdfTonto -f booklet __<__ in.pdf __>__ outbooklet.pdf== ---- |
|