I know there is another thread with many answers for this question; however, I am a newbie and a lot of that was gibberish to me. I am trying to learn though:)
Anyway, I've installed ghostscript and tried to run it a few times using this script
for file in *.pdf ; do gs -dSAFER -dNOPAUSE -dBATCH -sDEVICE=pdfwrite \
-sOutputFile="${file%.pdf}-page1.pdf" -dFirstPage=1 -dLastPage=1 "$file" ;
I got that script from here.
I didn't really know where to put the directory name that I wanted the program to batch extract from nor the output filename, and or the output director. I realize this is basic stuff for most you but if anyone could help me out you'd be saving me probably years of work.
Thanks!