#!/bin/sh
# Print a PDF file (first argument) with some lpr switches (remainder)
file=$1
shift
cat "$file" | acroread -toPostScript | lpr "$@"
