#!/bin/sh
# Mac OSX wrapper around the Preview command,
# with options that may vary from time to time.

for f in $*
do	open -a Preview $f
	sleep 1
done
