Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Printing PDFs from Windows Command Line

I'm trying to print all pdfs in current dir. When I call this bash script in cmd (singlepdf.sh): '"C:\Program Files (x86)\Adobe\Reader 10.0\Reader\AcroRd32.exe"' /t Gemeinde_348_BioID_842_alt.pdf everything's working fine.

When calling multiplepdfs.sh with this content:

declare -a pdfs=(*.pdf)  for pdf in ${pdfs[@]}; do   echo -e "\nprinting **$pdf** with AcroRd32.exe...\n"   '"C:\Program Files (x86)\Adobe\Reader 10.0\Reader\AcroRd32.exe"' /t $pdf   sleep 3 done 

The echo shows that files are addressed correctly in the loop - but then I get the error "C:\Program Files (x86)\Adobe\Reader 10.0\Reader\AcroRd32.exe": No such file or directory

Can someone help out with this issue?

Edit: BTW, I have msys mingw installed

like image 628
Kay Avatar asked Oct 01 '13 19:10

Kay


People also ask

How do I print from command line?

To print a document on the default printer, just use the lp command followed by the name of the file you want to print.


1 Answers

I know this is and old question, but i was faced with the same problem recently and none of the answers worked for me:

  • Couldn't find an old Foxit Reader version
  • As @pilkch said 2Printer adds a report page
  • Adobe Reader opens a gui

After searching a little more i found this: http://www.columbia.edu/~em36/pdftoprinter.html.

It's a simple exe that you call with the filename and it prints to the default printer (or one that you specify). From the site:

PDFtoPrinter is a program for printing PDF files from the Windows command line. The program is designed generally for the Windows command line and also for use with the vDos DOS emulator.

To print a PDF file to the default Windows printer, use this command:

PDFtoPrinter.exe filename.pdf 

To print to a specific printer, add the name of the printer in quotation marks:

PDFtoPrinter.exe filename.pdf "Name of Printer" 

If you want to print to a network printer, use the name that appears in Windows print dialogs, like this (and be careful to note the two backslashes at the start of the name and the single backslash after the servername):

PDFtoPrinter.exe filename.pdf "\\SERVER\PrinterName" 
like image 131
scripts Avatar answered Sep 20 '22 16:09

scripts