Try this one

#!/bin/bash
for file in *.eps
do
ps2pdf -dEPSCrop $file
echo 'Converted $file into pdf.'
done