search for: printtim

Displaying 6 results from an estimated 6 matches for "printtim".

Did you mean: printtime
2003 May 15
4
PDF Samba Printer - ps2pdf Only Letter Size?
..., simply copy this script to your backend directory, and # create a printer with the correct URI. That's it. # # Copyright (C) Michael Goffioul (goffioul@imec.be) 2001 LOGFILE=/var/log/cups/pdf.log PDFBIN=`which ps2pdf` FILENAME= # this is borrowed from printpdf script for the filename PRINTTIME=`date +%b%d-%H%M%S` echo "Executable: $PDFBIN" >> $LOGFILE echo "Arguments: |$1|$2|$3|$4|$5|$6|" >> $LOGFILE echo $# $PRINTTIME >> $LOGFILE # case of no argument, prints available URIs if [ $# -eq 0 ]; then if [ ! -x "$PDFBIN" ]; then exit 0...
2004 Aug 25
1
PDF printing with printing = CUPS
...nd what name. # Since my users are in LDAP backend try to lookup Windows homedrive letter to use in # notification message else notifies with full server path to home directory. # LOGFILE=/tmp/pdf.log PDFBIN=`which ps2pdf` FILENAME= # this is borrowed from printpdf script for the filename PRINTTIME=`date +%b%d-%H%M%S` echo "Executable: $PDFBIN" > $LOGFILE echo "Arguments: |$1|$2|$3|$4|$5|$6|" >> $LOGFILE echo $# $PRINTTIME >> $LOGFILE #EMR USER_ER=$2 JOB_ER=$1 ORIGIN_ER=`smbstatus -b -u $2|grep $2` HOMEDIR_ER=`eval "echo ~$2"` echo &quot...
2003 May 16
1
Modified Cups Backed pdf writer to keep the original document name.
...To use it, simply copy this script to your backend directory, and # create a printer with the correct URI. That's it. # # Copyright (C) Michael Goffioul (goffioul@imec.be) 2001 LOGFILE=/var/log/cups/pdf.log PDFBIN=`which ps2pdf` FILENAME= # this is borrowed from printpdf script for the filename PRINTTIME=`date +%b%d-%H%M%S` DOMAIN="@yourdomain.com.au" WEBSERVER="http://yourwebserver/pdf/" #mail stuff DATE=`date +%d%b%Y-%H:%M:%S` MAILFILE=/tmp/mailtemp HEADER=/tmp/header # case of no argument, prints available URIs if [ $# -eq 0 ]; then if [ ! -x "$PDFBIN" ]; then...
2003 May 15
0
PDF Samba Printer - ps2pdf Only Lette
...t;# create a printer with the correct URI. That's it. > ># > ># Copyright (C) Michael Goffioul (goffioul@imec.be) 2001 > >LOGFILE=/var/log/cups/pdf.log > >PDFBIN=`which ps2pdf` > >FILENAME= > ># this is borrowed from printpdf script for the filename > >PRINTTIME=`date +%b%d-%H%M%S` > >echo "Executable: $PDFBIN" >> $LOGFILE > >echo "Arguments: |$1|$2|$3|$4|$5|$6|" >> $LOGFILE > >echo $# $PRINTTIME >> $LOGFILE > ># case of no argument, prints available URIs > >if [ $# -eq 0 ]; then > &g...
2020 Jun 17
1
Slow and Incomplete printing from DOS Client 3.0
...ad only = No root at LBUFSERVER:/var/log/samba# cat /usr/lib64/cups/backend/rawcapture #!/bin/sh # ------------------------------------------------------------------- # "/usr/lib64/cups/backend/rawcapture": # ------------------------------------------------------------------- # FILENAME= PRINTTIME=`date +%Y-%m-%d_%H.%M.%S` # no argument, prints available URIs if [ $# -eq 0 ]; then echo "No Arguments" exit 0 fi # case of wrong number of arguments if [ $# -ne 5 -a $# -ne 6 ]; then echo "Usage: rawcapture job-id user title copies options [file]" exit 1 fi # get output direc...
2003 May 30
12
pdf printer
Hi, I created a PDFPrinter as per http://marc.theaimsgroup.com/?l=samba&m=105301236523413&w=2 I have another question, do I need to add a Color Laser Printer Driver in W2K to the PDF share to generate color PDF in Windows? Regards, Norman