> I used to use pdfjoin to join pdfs (though there was a bug where some
> pages would be oriented wrongly) and I needed to join some pdfs
> recently. But there were so many dependencies for pdfjoin that I decided
> to try pdfunite (that somebody had recently mentioned here), which I
> already had installed. It worked perfectly.

FWIW, I've been using the following "pdf-concat" script for years:

    % cat =pdf-concat 
    #!/bin/sh
     
    gs -q -sPAPERSIZE=letter -dNOPAUSE -dBATCH -sDEVICE=pdfwrite \
       -sOutputFile=- "$@"
    %


- Stefan

Reply via email to