Displaying 2 results from an estimated 2 matches for "afterpage".
Did you mean:
afterpages
1998 Sep 25
3
printer accounting
...lows 1 connection at a time. So you do all
this work at one point. You may have to play around with delays and such but
I see no reason why it shouldn't work.
it would look at little like this.
#!/bin/sh
#pagecounter
BEFOREPAGES=`npadmin --pagecount {printer ipaddress)`
lpr -Pprintername -r %s
AFTERPAGES=`npadmin --pagecount {printer ipaddress)`
TOTAL = `expr $BEFOREPAGES - $AFTERPAGES`
then you echo out TOTAL with usersnames etc etc to a log (with logger
preferrably)
that should help somewhat.
good luck
-sv
2002 Aug 23
5
quick xtable questions
Hi, I'm creating a lot of tables in a file for inclusion in a Latex
document. When I try to compile that document there is an error "too many
unprocessed floats." Is there a way to correct this?
Also, in a Latex table I want R to put in a $\beta$ in the caption, but it
puts a weird system character instead of the \b
Brian