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
9f6f0da0
Kaydet (Commit)
9f6f0da0
authored
Agu 12, 1998
tarafından
Fred Drake
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Improved some error messages for command line processing.
Added --all to produce all formats at once.
üst
00c468b0
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
17 additions
and
2 deletions
+17
-2
mkhowto.sh
Doc/tools/mkhowto.sh
+17
-2
No files found.
Doc/tools/mkhowto.sh
Dosyayı görüntüle @
9f6f0da0
...
...
@@ -40,7 +40,7 @@ Options specifying formats to build:
--dvi "DeVice Indepentent" format from TeX
--text ASCII text
More than one output format may be specified.
More than one output format may be specified
, or --all
.
HTML options:
--address, -a Specify an address for page footers.
...
...
@@ -59,6 +59,10 @@ Other options:
(stderr is also lost, sorry; see *.how for errors)
EOF
if
[
"
$2
"
]
;
then
echo
"
$2
"
echo
fi
exit
$1
}
...
...
@@ -159,6 +163,15 @@ cleanup() {
# figure out what our targets are:
while
[
"
$1
"
]
;
do
case
"
$1
"
in
--all
|
--al
)
BUILD_PDF
=
true
BUILD_PS
=
true
BUILD_DVI
=
true
BUILD_HTML
=
true
BUILD_TEXT
=
true
USE_DEFAULT_FORMAT
=
false
shift
1
;;
--pdf
|
--pd
)
BUILD_PDF
=
true
USE_DEFAULT_FORMAT
=
false
...
...
@@ -243,8 +256,10 @@ if [ $# = 0 ] ; then
COUNT
=
`
ls
-1
*
.tex |
wc
-l
|
sed
's/[ ]//g'
`
if
[
"
$COUNT
"
-eq
1
]
;
then
set
--
`
ls
-1
*
.tex
`
elif
[
"
$COUNT
"
-gt
1
]
;
then
usage 2
"Could not deduce which file(s) to process as HOWTO documents."
else
usage 2
usage 2
"No file to process."
fi
fi
...
...
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