#!/usr/bin/env bash
##
################################################################################
##
##  pdf270: A shell program to rotate pages of PDF files
##
##  (c) 2019: David Firth (http://go.warwick.ac.uk/dfirth, original author)
##  License: GPL (https://www.gnu.org/licenses/old-licenses/gpl-2.0.txt)
##
##  This is a simple wrapper for pdfjam, version N.NN
##
################################################################################
##
exec pdfjam --suffix rotated270 --angle 270 --fitpaper true --rotateoversize true "$@"
##
################################################################################
##
