pdfcropfilter (87B)
1 #!/bin/bash 2 3 TEMP=`mktemp` 4 TEMP2=`mktemp` 5 cat > $TEMP 6 pdfcrop $TEMP $TEMP2 7 cat $TEMP2 8