#!/bin/sh

for FILE in $@ ; do
  ps2pdf -sPAPERSIZE=a4 $FILE
done



