4

I am working with CUPS and trying to wrap some job monitoring around it. Is there any way for me to get the job number when I use the lpr to submit the job?

Alternatively, is there any other tool that will show me the list of jobs that are printed and give me the file name submitted for that job?

ewwhite
  • 194,921
  • 91
  • 434
  • 799
Ben Dauphinee
  • 203
  • 3
  • 9

1 Answers1

4

You should use "lp" instead of "lpr". "lp" will return a JOB ID after job submission. lp -d printername instead of lpr -P printername

[root@server ~]# lp -d office /etc/ntp.conf 
request id is office-5330836 (1 file(s))
ewwhite
  • 194,921
  • 91
  • 434
  • 799