#!/bin/bash

TMPFILE=`mktemp -t original` || exit 1
"/opt/local/bin/pdftk" "$1" cat 2-end output "$TMPFILE"
cp "$TMPFILE" "$1"

open -a Preview "$1"