#!/bin/bash --noprofile
# displays a PDF-file from stdinput with gv
#            (c) Hans-Peter-Stoerr (www.stoerr.net) Jan 2004
#$Id: pdfless,v 1.1 2004/01/08 09:01:59 stoerr Exp $
temp=`mktemp -u /tmp/pdfless.XXXXXX`
cat > $temp
(trap "wipe -f $temp >& /dev/null; rm -f $temp" EXIT; acroread $temp)&

