On Thu, Sep 22, 2005 at 06:26:10PM +0800, LI Daobing wrote:
> How about provide zevince similiar to zxpdf? many document in debian
> provide as pdf.gz.
> 
> or support read pdf from stdin, so I can use

Here is a working definition of `zevince'.  I use it regularly.

    #!/bin/sh -e
    #### This code is written by `Trent W. Buck <[EMAIL PROTECTED]>`_
    #### (except where explicitly noted) and placed in the Public Domain.
    #### All warranties are disclaimed.
    ####
    #### http://bugzilla.gnome.org/show_bug.cgi?id=307087
    x="`mktemp -dt`"
    trap "rm -rf \"$x\"" 0 TERM INT QUIT
    cd "$x"
    zcat "$@" >x.pdf
    evince x.pdf

-- 
Trent Buck, Student Errant

Attachment: signature.asc
Description: Digital signature

Reply via email to