Results 1 to 1 of 1
Hello,
I am trying to get a printing script to work to eventually automatically print documents remotely via dropbox. I have my printer installed on the computer(its actually a network ...
- 02-19-2011 #1Just Joined!
- Join Date
- Feb 2011
- Posts
- 1
Printing Script Error
Hello,
I am trying to get a printing script to work to eventually automatically print documents remotely via dropbox. I have my printer installed on the computer(its actually a network printer) but anything I print manually works fine, test page, open office doc etc. But anything my script tries to print gets added to the printing spool process and says completed but never actually prints. I have no idea whats up any help would be apperciated
print script that seems to works
Printer is a Canon MX870Code:#!/bin/bash export PrintQueue="/home/bobby/Dropbox/Print"; IFS=$' ' for PrintFile in $(/bin/ls -1 ${PrintQueue}) do lpr -r ${PrintQueue}/${PrintFile}; done


Reply With Quote