search for: outputpath

Displaying 4 results from an estimated 4 matches for "outputpath".

Did you mean: outputpage
2002 Jul 29
5
HOWTO Create a PDF Writer in samba
...ll ghostscript (most distributions include it anyway) 2. put the following in the file /usr/sbin/pdfprint and make it executable by whatever your guest user for samba is : #!/bin/bash #convert to pdf $1 = spool file $2 = uid $3 = gid $4 = machinename $5 = ip FILENAME=pdf-$2-`date +%d%m%H%M%S`.pdf OUTPUTPATH=/mnt/raid/topdf echo converting $1 to $FILENAME for $2 of machine $4... >> $OUTPUTPATH/pdfcreate.log /usr/bin/ps2pdf $1 $OUTPUTPATH/$FILENAME >> $OUTPUTPATH/pdfcreate.log 2>> $OUTPUTPATH/pdfcreate.log echo conversion finished, removing $1 >> $OUTPUTPATH/pdfcreate.log rm $1...
2005 Feb 23
0
printer access slow
.../samba printable = yes # %s = spool file, %U = uid + GID, %m = machine name, %I = ip, %H = homedir print command = /usr/sbin/pdfprint %s %U %m %I %H '%J' use client driver = yes lpq command = lprm command = =============================== /usr/sbin/pdfprint: =============================== OUTPUTPATH=/usr/local/pdfs LOGFILE=$OUTPUTPATH/pdfcreate.rtf FILENAME="$2-$6.pdf" echo "converting file \"$6\", spooled to \"$1\" to file \"$FILENAME\" for user \"$2\" on machine \"$4\"... " >> $LOGFILE echo "" >> $...
2012 May 17
8
[PATCH] libxl: do not overwrite user supplied config when running bootloader
...'') ARG(libxl__sprintf(gc, "--args=%s", info->u.pv.cmdline)); @@ -144,7 +145,6 @@ static int parse_bootloader_result(libxl char buf[PATH_MAX*2]; FILE *f = 0; int rc = ERROR_FAIL; - libxl_domain_build_info *info = bl->info; f = fopen(bl->outputpath, "r"); if (!f) { @@ -180,18 +180,15 @@ static int parse_bootloader_result(libxl #define COMMAND(s) ((rhs = bootloader_result_command(gc, buf, s, sizeof(s)-1))) if (COMMAND("kernel")) { - free(info->u.pv.kernel.path); - info->u.pv.kern...
2003 Jun 04
4
Strip location and grid colour in Lattice
...as.table=T, par.strip.text=list(lines=3.5,cex=0.8,style=1), main=paste(h,"Inpatient Beddays"), scales=list(x=list(cex=0.8,rot=90, at=c(2,6,9), labels=c("94","98","01"),col="navy")) ) print(p1) savePlot(file=paste(OutputPath,"Inpatient beddays -(lattice) by region",h," ",j,sep=""),type="wmf") } Of course there are a few things in here that are probably not the right way to do things, but I tend to be more interested in the output, rather than whether or not my programming is up...