Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
cpython
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
cpython
Commits
47f69067
Kaydet (Commit)
47f69067
authored
Agu 28, 1998
tarafından
Fred Drake
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Script to generate page counts of the PostScript files.
üst
e1feb8f2
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
23 additions
and
0 deletions
+23
-0
getpagecounts
Doc/tools/getpagecounts
+23
-0
No files found.
Doc/tools/getpagecounts
0 → 100755
Dosyayı görüntüle @
47f69067
#! /bin/sh
# -*- Ksh -*-
#
# Generate a page count report of the PostScript version of the manuals.
cd
`
dirname
$0
`
/..
PAPER
=
${
PAPER
:-
letter
}
cat
<<
EOF
This is the PostScript version of the standard Python documentation.
If you plan to print this, be aware that some of the documents are
long. These files have the following page counts:
EOF
for
PART
in
api ext lib mac ref tut
;
do
FILE
=
paper-
$PAPER
/
$PART
.ps
PAGECOUNT
=
`
grep
'^%%Page:'
$FILE
|
wc
-l
|
cut
-f
1 |
tr
-d
' '
`
echo
"
$PART
.ps --
$PAGECOUNT
pages"
done
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment