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
Line 
1#!/bin/sh
2#
3# PyKota : Print Quotas for CUPS
4#
5# (c) 2003, 2004, 2005, 2006, 2007, 2008 Jerome Alet <alet@librelogiciel.com>
6# This program is free software: you can redistribute it and/or modify
7# it under the terms of the GNU General Public License as published by
8# the Free Software Foundation, either version 3 of the License, or
9# (at your option) any later version.
10#
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.
15#
16# You should have received a copy of the GNU General Public License
17# along with this program.  If not, see <http://www.gnu.org/licenses/>.
18#
19#
20# $Id$
21#
22#
23#
24# This script was freely adapted and modified from the printquota project
25# http://printquota.sourceforge.net for inclusion into PyKota.
26#
27# printquota (c) 2002-2003 Ahmet Ozturk & Cagatay Koksoy
28# printquota is distributed under the GNU General Public License
29#
30# Usage : pagecount.sh <file.ps
31#
32(
33(sed -n -e '/%!PS-Adobe-/,/\%\%EOF/p' | grep -E -v "/Duplex|PageSize")
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.