2008-08-28 klockan 14:17 skrev [EMAIL PROTECTED]: > At the moment, evince does not deal with standard input. > If the content of a PDF files comes from the standard input, it is silently > discarded.
That is deliberate. Evince is a GUI program, not a command line filtering
tool. Implementing this would interfere with the "single instance" approach
currently used. Perhaps a shell script like this would help you:
#!/bin/sh
TMPFILE=$(mktemp evince-$USER.XXXXXXX)
cat > $TMPFILE
evince $TMPFILE
sleep 2
rm $TMPFILE
Good luck.
mvrgr, Wouter
--
:wq mail [EMAIL PROTECTED]
web http://uwstopia.nl
what it was that you had said to me :: like i care at all -- tool
signature.asc
Description: Digital signature
_______________________________________________ Evince-list mailing list [email protected] http://mail.gnome.org/mailman/listinfo/evince-list
