####################################
#!/bin/bash
#####################################################################
# setup variables
#probably need to set a variable for the PDF files
#####################################################################
PDFDIR=' /mnt/cdrom1/PDFs/'
FILE=*.pdf #<--------I don't think that's it :(
#copy it
cp /mnt/cdrom1/PDFs/$FILE ~/tmp/PDF
#do processing here
for f in $*{PDFDIR}
do
mv $f $N.pdf
pdftotext -layout $N
echo $f renamed into $N.txt #<-------- I like seeing what's happening
done
exit 0
############################