root / pykota / trunk / untested / postscript / pagecount.sh @ 3413

Revision 3413, 1.2 kB (checked in by jerome, 16 years ago)

Removed unnecessary spaces at EOL.

  • Property svn:eol-style set to native
  • Property svn:executable set to *
  • Property svn:keywords set to Author Date Id Revision
RevLine 
[987]1#!/bin/sh
2#
[3259]3# PyKota : Print Quotas for CUPS
[987]4#
[3275]5# (c) 2003, 2004, 2005, 2006, 2007, 2008 Jerome Alet <alet@librelogiciel.com>
[3259]6# This program is free software: you can redistribute it and/or modify
[993]7# it under the terms of the GNU General Public License as published by
[3259]8# the Free Software Foundation, either version 3 of the License, or
[993]9# (at your option) any later version.
[3413]10#
[993]11# This program is distributed in the hope that it will be useful,
12# but WITHOUT ANY WARRANTY; without even the implied warranty of
13# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14# GNU General Public License for more details.
[3413]15#
[993]16# You should have received a copy of the GNU General Public License
[3259]17# along with this program.  If not, see <http://www.gnu.org/licenses/>.
[993]18#
[3259]19#
[993]20# $Id$
21#
22#
23#
[3413]24# This script was freely adapted and modified from the printquota project
[993]25# http://printquota.sourceforge.net for inclusion into PyKota.
26#
[987]27# printquota (c) 2002-2003 Ahmet Ozturk & Cagatay Koksoy
28# printquota is distributed under the GNU General Public License
29#
[993]30# Usage : pagecount.sh <file.ps
[987]31#
32(
[993]33(sed -n -e '/%!PS-Adobe-/,/\%\%EOF/p' | grep -E -v "/Duplex|PageSize")
[987]34echo currentdevice /PageCount gsgetdeviceprop == flush
35) | gs -q -sDEVICE=bit -sOutputFile=/dev/null -r5 - | tail -1
Note: See TracBrowser for help on using the browser.