1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
|
#!/bin/sh
# TeXConfig version 3.0
# Originally written by Thomas Esser. Public domain.
# Now maintained as part of TeX Live; correspondence to tex-live@tug.org.
# invoke the right shell:
test -f /bin/ksh && test -z "$RUNNING_KSH" \
&& { UNAMES=`uname -s`; test "x$UNAMES" = xULTRIX; } 2>/dev/null \
&& { RUNNING_KSH=true; export RUNNING_KSH; exec /bin/ksh $0 ${1+"$@"}; }
unset RUNNING_KSH
test -f /bin/bsh && test -z "$RUNNING_BSH" \
&& { UNAMES=`uname -s`; test "x$UNAMES" = xAIX; } 2>/dev/null \
&& { RUNNING_BSH=true; export RUNNING_BSH; exec /bin/bsh $0 ${1+"$@"}; }
unset RUNNING_BSH
export PATH
# hack around a bug in zsh:
test -n "${ZSH_VERSION+set}" && alias -g '${1+"$@"}'='"$@"'
# initializations...
progname=texconfig
# the version string
version='$Id$'
envVars="
AFMFONTS BIBINPUTS BSTINPUTS CMAPFONTS CWEBINPUTS ENCFONTS GFFONTS
GLYPHFONTS INDEXSTYLE LIGFONTS MFBASES MFINPUTS MFPOOL MFTINPUTS
MISCFONTS MPINPUTS MPMEMS MPPOOL MPSUPPORT OCPINPUTS OFMFONTS
OPENTYPEFONTS OPLFONTS OTPINPUTS OVFFONTS OVPFONTS PDFTEXCONFIG PKFONTS
PSHEADERS SFDFONTS T1FONTS T1INPUTS T42FONTS TEXBIB TEXCONFIG TEXDOCS
TEXFONTMAPS TEXFONTS TEXFORMATS TEXINDEXSTYLE TEXINPUTS TEXMFCNF
TEXMFDBS TEXMFINI TEXMFSCRIPTS TEXPICTS TEXPKS TEXPOOL TEXPSHEADERS
TEXSOURCES TFMFONTS TRFONTS TTFONTS VFFONTS WEB2C WEBINPUTS
"
tmpdir=${TMPDIR-${TEMP-${TMP-/tmp}}}/tctmp.$$
needsCleanup=false
lastUpdatedFile=
#
###############################################################################
# setupFMT(void) - find a suitable version of fmt / adjust
#
setupFMT()
{
case $FMT in
"")
FMT=fmt
test ! -x /bin/fmt && test ! -f /usr/bin/fmt &&
{ test -x /bin/adjust || test -x /usr/bin/adjust; } && FMT=adjust
;;
*)
return
;;
esac
}
###############################################################################
# myFmt(args) - run $FMT
#
myFmt()
{
setupFMT
$FMT ${1+"$@"}
}
###############################################################################
# echoShowVariable(args ...)
# show environment variables which names are as args and their values
#
echoShowVariable()
{
for esv
do
var=$esv
eval val=\"\${$var+=}\${$var- is unset}\"
echo "$var$val"
done | grep -v 'is unset$'
}
###############################################################################
# echoShowKpseVariable(args ...)
# show kpathsea variables which names are as args and their values
#
echoShowKpseVariable()
{
for eskv
do
var=$eskv
val=`kpsewhich -var-value="$eskv"`
echo "$var=$val"
done
}
###############################################################################
# echoLocateBinary(args ...) - show where programs actually exist
#
echoLocateBinary()
{
for elb
do
elbLoc=`checkForBinary "$elb"`
if test -n "$ELB_PATH_ONLY"; then
test -n "$elbLoc" && echo "$elbLoc"
else
case $elbLoc in
"") echo "$elb: not found";;
*) echo "$elb: $elbLoc";;
esac
fi
done
}
###############################################################################
# echoLocateCfgfile(args ...) - show where files actually exist
#
echoLocateCfgfile()
{
for elc
do
case $elc in
texmf.cnf) elcLoc=`kpsewhich $elc`;;
*) elcLoc=`tcfmgr --cmd find --file "$elc"`;;
esac
case $elcLoc in
"") echo "$elc: not found";;
*) echo "$elcLoc";;
esac
done
}
###############################################################################
# checkForBinary(prog) - echo full path of prog
#
checkForBinary()
{
cfbBinary=$1
OLDIFS=$IFS
IFS=:
set x `echo "$PATH" | sed 's/^:/.:/; s/:$/:./; s/::/:.:/g'`; shift
found=false
for pathElem
do
case $pathElem in
"") continue;;
*) test -f "$pathElem/$cfbBinary" && { echo "$pathElem/$cfbBinary"; found=true; break; }
esac
done
IFS=$OLDIFS
case $found in
true) (exit 0); return 0;;
false) (exit 1); return 1;;
esac
}
###############################################################################
# cleanup() - clean up the temp area and exit with proper exit status
#
cleanup()
{
rc=$1
$needsCleanup && test -n "$tmpdir" && test -d "$tmpdir" \
&& { cd / && rm -rf "$tmpdir"; }
(exit $rc); exit $rc
}
###############################################################################
# setupTmpDir() - set up a temp directory and a trap to remove it
#
setupTmpDir()
{
case $needsCleanup in
true) return;;
esac
trap 'cleanup 1' 1 2 3 7 13 15
needsCleanup=true
(umask 077; mkdir "$tmpdir") \
|| abort "could not create directory \`$tmpdir'"
}
###############################################################################
# setupTexmfmain() - get value for MT_TEXMFMAIN (with caching)
#
setupTexmfmain()
{
case $MT_TEXMFMAIN in
"") MT_TEXMFMAIN=`kpsewhich -var-value=TEXMFMAIN`;;
*) return;;
esac
}
###############################################################################
# setupTexmfmain() - get value for MT_TEXMFDIST (with caching)
#
setupTexmfdist()
{
case $MT_TEXMFDIST in
"") MT_TEXMFDIST=`kpsewhich -var-value=TEXMFDIST`;;
*) return;;
esac
}
###############################################################################
# setupTexmfvar() - get value for MT_TEXMFVAR (with caching)
#
setupTexmfvar()
{
case $MT_TEXMVAR in
"") MT_TEXMVAR=`kpsewhich -var-value=TEXMFVAR`;;
*) return;;
esac
}
###############################################################################
# setupSystexmf() - get value for MT_SYSTEXMF (with caching)
#
setupSystexmf()
{
case $MT_SYSTEXMF in
"") MT_SYSTEXMF=`kpsewhich -var-value=SYSTEXMF`;;
*) return;;
esac
}
###############################################################################
# abort(errmsg)
# print `errmsg' to stderr and exit with error code 1
#
abort()
{
echo "$progname: $1." >&2
cleanup 1
}
###############################################################################
# mktexdir(args)
# call mktexdir script, disable all features (to prevent sticky directories)
#
mktexdir()
{
setupTexmfmain
MT_FEATURES=none "$MT_TEXMFMAIN/web2c/mktexdir" "$@" >&2
}
###############################################################################
# tcfmgr(args) - call tcfmgr script
#
tcfmgr()
{
setupTexmfmain
"$MT_TEXMFMAIN/texconfig/tcfmgr" "$@"
}
###############################################################################
# mktexupd(args) - call mktexupd script
#
mktexupd()
{
setupTexmfmain
"$MT_TEXMFMAIN/web2c/mktexupd" "$@"
}
###############################################################################
# getRelDir(file)
# matches file against SYSTEXMF. Returns relative directory of file within
# a texmf tree in variable relPart.
#
getRelDir()
{
file=$1
relPart=
setupSystexmf
OLDIFS=$IFS
IFS='
'
set x `echo "$MT_SYSTEXMF" | tr : '
'`; shift
IFS=$OLDIFS
# now loop over all components of SYSTEXMF
for dir
do
test -n "$dir" || continue
case "$file" in
$dir/*)
relPart=`echo "$file" | sed "s%$dir/*%%"`
break
;;
esac
done
# now check for success / failure
case $relPart in
""|$file)
# empty or full filename -> getRelDir failed!
(exit 1); return 1
;;
*)
# relPart should just have the "dirname" part:
relPart=`echo "$relPart" | sed 's%/*[^/]*$%%'`
(exit 0); return 0
;;
esac
}
###############################################################################
# configReplace(file pattern line)
# The first line in file that matches pattern gets replaced by line.
# line will be added at the end of the file if pattern does not match.
#
configReplace()
{
configReplaceFile=$1; configReplacePat=$2; configReplaceLine=$3
if grep "$configReplacePat" "$configReplaceFile" >/dev/null; then
ed "$configReplaceFile" >/dev/null 2>&1 <<-eof
/$configReplacePat/c
$configReplaceLine
.
w
q
eof
else
echo "$configReplaceLine" >> $configReplaceFile
fi
}
###############################################################################
# fmgrConfigReplace (file regex value)
# replaces line matching regex by value in file
#
fmgrConfigReplace()
{
fmgrConfigReplaceChanged=false
moreArgs=""
while
case $1 in
--*) moreArgs="$moreArgs $1 $2";;
*) break;;
esac
do shift; shift; done
fmgrConfigReplaceFile=$1
fmgrConfigReplaceRegex=$2
fmgrConfigReplaceValue=$3
setupTmpDir
co=`tcfmgr $moreArgs --tmp $tmpdir --cmd co --file $fmgrConfigReplaceFile`
if test $? != 0; then
echo "$progname: fmgrConfigReplace co failed for \`$fmgrConfigReplaceFile'" >&2
(exit 1); return 1
fi
set x $co; shift
fmgrConfigReplaceID=$1; fmgrConfigReplaceCfgFile=$3; fmgrConfigReplaceOrigFile=$4
configReplace "$fmgrConfigReplaceCfgFile" "$fmgrConfigReplaceRegex" "$fmgrConfigReplaceValue"
ci=`tcfmgr --tmp $tmpdir --cmd ci --id "$fmgrConfigReplaceID"`
if test $? != 0; then
echo "$progname: fmgrConfigReplace ci failed for \`$fmgrConfigReplaceFile'" >&2
(exit 1); return 1
fi
case $ci in
"") :;;
$lastUpdatedFile)
fmgrConfigReplaceChanged=true;;
*) echo "$progname: updated configuration saved as file \`$ci'" >&2
fmgrConfigReplaceChanged=true
lastUpdatedFile=$ci;;
esac
(exit 0); return 0
}
###############################################################################
# setupDvipsPaper(paper)
# rearranges config.ps to make paper the first paper definition
#
setupDvipsPaper()
{
setupDvipsPaperChanged=false
setupDvipsPaperFile=config.ps
setupDvipsPaperDftPaper=$1
setupTmpDir
co=`tcfmgr --tmp $tmpdir --cmd co --file $setupDvipsPaperFile`
if test $? != 0; then
echo "$progname: setupDvipsPaper co failed for \`$setupDvipsPaperFile'" >&2
(exit 1); return 1
fi
set x $co; shift
setupDvipsPaperID=$1; setupDvipsPaperCfgFile=$3; setupDvipsPaperOrigFile=$4
ed "$setupDvipsPaperCfgFile" > /dev/null 2>&1 <<-eof
/@ /ka
\$a
@
.
/@ $setupDvipsPaperDftPaper /;/@ /-1m'a-1
\$d
w
q
eof
ci=`tcfmgr --tmp $tmpdir --cmd ci --id "$setupDvipsPaperID"`
if test $? != 0; then
echo "$progname: setupDvipsPaper ci failed for \`$setupDvipsPaperFile'" >&2
(exit 1); return 1
fi
case $ci in
"") :;;
$lastUpdatedFile)
setupDvipsPaperChanged=true;;
*) echo "$progname: updated configuration saved as file \`$ci'" >&2
setupDvipsPaperChanged=true
lastUpdatedFile=$ci;;
esac
(exit 0); return 0
}
###############################################################################
# setupModesMfFile(void) - find modes.mf file (with caching)
#
setupModesMfFile()
{
case $modesMfFile in
"")
modesMfFile=`tcfmgr --cmd find --file modes.mf`
;;
*)
return
;;
esac
}
###############################################################################
# locateConfigPsFile(void) - find config.ps file (with caching)
#
locateConfigPsFile()
{
case $configPsFile in
"")
configPsFile=`tcfmgr --cmd find --file config.ps`
;;
*)
return
;;
esac
}
###############################################################################
# listMfModes(file) - list modes from modes.mf file
#
listMfModes()
{
grep mode_def "$modesMfFile" |
sed -e "s/mode_def //" \
-e "s/ .*%[^ ]* / '/" \
-e "s/\$/' /" |
egrep -v "^(help|%)" | sort
}
###############################################################################
# listDvipsPapers(void) - list paper definitions from config.ps
#
listDvipsPapers()
{
grep '@ ' $configPsFile | sed "s/..//;s/ / '/;s/\$/' /"
}
###############################################################################
# getFormatsForHyphen(void)
# list all formats which have customizable hyphenation
#
getFormatsForHyphen()
{
fmtutil --catcfg | awk '$3 != "-" {print $1}' | sort
}
###############################################################################
# getRes(mode) - print resolution (both X and Y axis) to metafont mode
#
getRes()
{
getResMode=$1
(
cd $tmpdir
cat >mftmp.mf <<-'eof'
let myexit = primitive_end_;
mode_setup;
string xdpi;
xdpi := decimal round pixels_per_inch;
message "XDPI = " & xdpi;
string ydpi;
ydpi := decimal round (pixels_per_inch * aspect_ratio);
message "YDPI = " & ydpi;
fontmaking := 0;
myexit;
eof
mf '\mode='"$getResMode"'; \input ./mftmp' </dev/null \
| awk '$1 == "XDPI" || $1 == "YDPI" { print $3 }'
)
}
###############################################################################
# checkElemInList(elem, list)
# check if element exists in list
###############################################################################
checkElemInList()
{
checkElemInListElem=$1; shift
checkElemInListFound=false
for checkElemInListIter
do
case "x$checkElemInListElem" in
x$checkElemInListIter)
checkElemInListFound=true
break
;;
esac
done
case $checkElemInListFound in
true) (exit 0); return 0;;
esac
(exit 1); return 1
}
# show version information from the distribution, if we have any.
showDistVersionInfo()
{
# TeX Live file.
test -f $MT_TEXMFMAIN/../release-texlive.txt \
&& sed 1q $MT_TEXMFMAIN/../release-texlive.txt
# no harm in continuing to look for the teTeX files.
test -f $MT_TEXMFMAIN/release-tetex-src.txt \
&& "teTeX-src release: `cat $MT_TEXMFMAIN/release-tetex-src.txt`"
test -f $MT_TEXMFDIST/release-tetex-texmf.txt \
&& "teTeX-texmf release: `cat $MT_TEXMFDIST/release-tetex-texmf.txt`"
}
#
###############################################################################
# tcBatch(args)
# handle batch mode
###############################################################################
tcBatch()
{
help="texconfig supports adjusting and updating many aspects of
the TeX installation.
Usage: $progname conf (show configuration information)
$progname dvipdfmx paper PAPER (dvipdfmx paper size)
$progname dvipdfm paper PAPER (dvipdfm paper size)
$progname dvips [OPTION...] (dvips options)
$progname faq (show teTeX faq)
$progname findprog PROG... (show locations of PROGs, a la which)
$progname font vardir DIR
$progname font ro
$progname font rw
$progname formats (edit fmtutil.cnf)
$progname help (or --help; show this help)
$progname hyphen FORMAT (edit hyphenation config for FORMAT)
$progname init [FORMAT]... (rebuild FORMATs, or all formats
plus run texlinks and updmap)
$progname mode MODE (set Metafont MODE)
$progname paper PAPER (set default paper size to PAPER)
$progname pdftex [OPTION]... (pdftex options)
$progname rehash (rebuild ls-R files with mktexlsr)
$progname version (or --version; show version info)
$progname xdvi paper PAPER (xdvi paper size)
Get more help with:
$progname dvipdfmx
$progname dvipdfm
$progname dvips
$progname font
$progname hyphen
$progname mode
$progname paper
$progname pdftex
$progname xdvi
Report bugs to: tex-k@tug.org
TeX Live home page: <http://tug.org/texlive/>
"
case $1 in
# texconfig conf
conf|confall)
setupTexmfmain
setupTexmfdist
echo '=========================== version information =========================='
showDistVersionInfo
echo
echo '==================== binaries found by searching $PATH ==================='
echo "PATH=$PATH"
echoLocateBinary kpsewhich updmap fmtutil texconfig tex pdftex mktexpk dvips dvipdfm
echo
echo '=========================== active config files =========================='
echoLocateCfgfile texmf.cnf updmap.cfg fmtutil.cnf config.ps mktex.cnf XDvi pdftexconfig.tex config | sort -k 2
echo
echo '============================= font map files ============================='
for m in psfonts.map pdftex.map ps2pk.map dvipdfm.map; do
echo "$m: `kpsewhich $m`"
done
echo
echo '=========================== kpathsea variables ==========================='
echoShowKpseVariable TEXMFMAIN TEXMFDIST TEXMFLOCAL TEXMFSYSVAR TEXMFSYSCONFIG TEXMFVAR TEXMFCONFIG TEXMFHOME VARTEXFONTS TEXMF SYSTEXMF TEXMFDBS WEB2C TEXPSHEADERS TEXCONFIG ENCFONTS TEXFONTMAPS
echo
echo '==== kpathsea variables from environment only (ok if no output here) ===='
echoShowVariable $envVars
;;
# texconfig dvipdfm
dvipdfm)
help="Usage: $progname dvipdfm paper PAPER
Valid PAPER settings:
letter legal ledger tabloid a4 a3"
case $2 in
# texconfig dvipdfm paper
paper-list)
for p in letter legal ledger tabloid a4 a3; do echo $p; done
;;
paper)
case $3 in
letter|legal|ledger|tabloid|a4|a3)
fmgrConfigReplace config '^p' "p $3";;
"") echo "$help" >&2; rc=1;;
*)
echo "$progname: unknown PAPER \`$3' given as argument for \`$progname dvipdfm paper'" >&2
echo "$progname: try \`$progname dvipdfm paper' for help" >&2
rc=1 ;;
esac ;;
# texconfig dvipdfm ""
"")
echo "$help" >&2; rc=1 ;;
# texconfig dvipdfm <unknown>
*)
echo "$progname: unknown option \`$2' given as argument for \`$progname dvipdfm'" >&2
echo "$progname: try \`$progname dvipdfm' for help" >&2
rc=1
;;
esac
;;
# texconfig dvipdfmx
dvipdfmx)
help="Usage: $progname dvipdfmx paper PAPER
Valid PAPER settings:
letter legal ledger tabloid a4 a3"
case $2 in
# texconfig dvipdfmx paper
paper-list)
for p in letter legal ledger tabloid a4 a3; do echo $p; done
;;
paper)
case $3 in
letter|legal|ledger|tabloid|a4|a3)
fmgrConfigReplace dvipdfmx.cfg '^p' "p $3";;
"") echo "$help" >&2; rc=1;;
*)
echo "$progname: unknown PAPER \`$3' given as argument for \`$progname dvipdfmx paper'" >&2
echo "$progname: try \`$progname dvipdfmx paper' for help" >&2
rc=1 ;;
esac ;;
# texconfig dvipdfmx ""
"")
echo "$help" >&2; rc=1 ;;
# texconfig dvipdfmx <unknown>
*)
echo "$progname: unknown option \`$2' given as argument for \`$progname dvipdfmx'" >&2
echo "$progname: try \`$progname dvipdfmx' for help" >&2
rc=1
;;
esac
;;
# texconfig dvips
dvips)
shift
help="Usage: $progname dvips add PRINTER
$progname dvips del PRINTER
$progname dvips paper PAPER
$progname dvips [-P PRINTER] mode MODE
$progname dvips [-P PRINTER] offset OFFSET
$progname dvips [-P PRINTER] printcmd CMD"
case $1 in
-P)
case $2 in
"")
echo "$progname: missing arg for parameter -P" >&2
rc=1; (exit $rc); return $rc
;;
*)
otherPrinter=true
otherPrinterName=$2
otherPrinterFile=`kpsewhich -format='dvips config' "config.$otherPrinterName"`
case $otherPrinterFile in
"")
echo "$progname: configuration file \`config.$otherPrinterName' for printer \`$otherPrinterName' not found" >&2
rc=1; (exit $rc); return $rc
;;
*) shift; shift;;
esac
;;
esac
;;
*)
otherPrinter=false
;;
esac
case $otherPrinter in
true)
tcBatchDvipsPrinter=$otherPrinterName
moreFmgrArgs="--reldir dvips/config --infile $otherPrinterFile"
;;
*)
tcBatchDvipsPrinter=ps
;;
esac
case $1 in
add)
case $2 in
"")
echo "Usage: $progname dvips add PRINTER" >&2
rc=1
;;
*)
printerName=$2
pFile=`kpsewhich -format='dvips config' "config.$printerName"`
case $pFile in
"")
setupTmpDir
tcfRet=`tcfmgr --emptyinfile --reldir dvips/config --cmd co --tmp $tmpdir --file "config.$printerName"`
if test $? != 0; then
echo "$progname: failed to add new configuration file \`config.$printerName'" >&2
rc=1
else
set x $tcfRet; shift
tcBatchDvipsAddID=$1; tcBatchDvipsAddFile=$3
echo "% file config.$printerName; added by texconfig" > "$tcBatchDvipsAddFile"
tcfRet=`tcfmgr --tmp $tmpdir --id "$tcBatchDvipsAddID" --cmd ci`
if test $? != 0; then
echo "$progname: failed to add new configuration file \`config.$printerName'" >&2
rc=1
else
echo "$progname: file $tcfRet added" >&2
fi
fi
;;
*)
echo "$progname: configuration file for printer \`$printerName' already exists (\`$pFile')" >&2
rc=1
;;
esac
;;
esac
;;
del)
case $2 in
"")
echo "Usage: $progname dvips del PRINTER" >&2
rc=1
;;
*)
printerName=$2
pFile=`kpsewhich -format='dvips config' "config.$printerName"`
case $pFile in
"")
echo "$progname: configuration file for printer \`$printerName' (config.$printerName) not found" >&2
rc=1
;;
*)
if rm "$pFile"; then
echo "$progname: file \`$pFile' removed" >&2
else
echo "$progname: failed to remove file \`$pFile'" >&2
rc=1
fi
;;
esac
;;
esac
;;
paper-list)
locateConfigPsFile
listDvipsPapers
;;
paper)
case $2 in
"")
echo "Usage: $progname dvips paper PAPER" >&2
echo >&2; echo "Valid PAPER settings:" >&2
locateConfigPsFile
listDvipsPapers | sed 's@ .*@@; s@^@ @' | myFmt
rc=1
;;
*)
tcBatchDvipsPaper=$2
locateConfigPsFile
case "$configPsFile" in
"")
echo "$progname: file config.ps not found" >&2; rc=1
;;
*)
if grep "@ $tcBatchDvipsPaper " $configPsFile >/dev/null 2>&1; then
setupDvipsPaper "$tcBatchDvipsPaper"
else
echo "$progname: paper \`$tcBatchDvipsPaper' not found in file \`$configPsFile'" >&2; rc=1
fi
;;
esac
;;
esac
;;
mode)
case $2 in
"")
echo "Usage: $progname dvips mode MODE
Valid MODE settings:"
setupModesMfFile
listMfModes | sed 's@ .*@@; s@^@ @' | myFmt
rc=1
;;
*)
tcBatchDvipsMode=$2
setupTmpDir
setupModesMfFile
if checkElemInList "$tcBatchDvipsMode" `listMfModes | sed 's@ .*@@'`; then
set x `getRes "$tcBatchDvipsMode"`; shift
resX=$1; resY=$2
fmgrConfigReplace $moreFmgrArgs config.$tcBatchDvipsPrinter '^M' "M $tcBatchDvipsMode"
fmgrConfigReplace $moreFmgrArgs config.$tcBatchDvipsPrinter '^D' "D $resX"
fmgrConfigReplace $moreFmgrArgs config.$tcBatchDvipsPrinter '^X' "X $resX"
fmgrConfigReplace $moreFmgrArgs config.$tcBatchDvipsPrinter '^Y' "Y $resY"
else
echo "$progname: unknown MODE \`$tcBatchDvipsMode' given as argument for \`$progname dvips mode'" >&2
echo "$progname: try \`$progname dvips mode' for help" >&2
rc=1
fi
;;
esac
;;
offset)
offset=$2
case $offset in
"")
echo "Usage: $progname dvips offset OFFSET"
rc=1
;;
*)
fmgrConfigReplace $moreFmgrArgs config.$tcBatchDvipsPrinter '^O' "O $offset"
esac
;;
printcmd)
printcmd=$2
case $printcmd in
"")
echo "Usage: $progname dvips printcmd CMD"
rc=1
;;
-)
fmgrConfigReplace $moreFmgrArgs config.$tcBatchDvipsPrinter '^o' o
;;
*)
fmgrConfigReplace $moreFmgrArgs config.$tcBatchDvipsPrinter '^o' "o |$printcmd"
;;
esac
;;
"")
echo "$help" >&2; rc=1
;;
*)
echo "$progname: unknown option \`$1' given as argument for \`$progname dvips'" >&2
echo "$progname: try \`$progname dvips' for help" >&2
rc=1
;;
esac
;;
faq)
setupTexmfmain
if test -f $MT_TEXMFMAIN/doc/tetex/teTeX-FAQ; then
<$MT_TEXMFMAIN/doc/tetex/teTeX-FAQ eval ${PAGER-more}
else
echo "$progname: faq not found (usually in \$TEXMFMAIN/doc/tetex/teTeX-FAQ)" >&2
rc=1
fi
;;
findprog)
shift
ELB_PATH_ONLY=1 echoLocateBinary "$@"
;;
# handle "texconfig font"
font)
help="Usage: $progname font vardir DIR
$progname font ro
$progname font rw
The vardir option changes the VARTEXFONTS variable in the texmf.cnf file.
The rw option makes the VARTEXFONTS directory (and subtrees pk, tfm,
source) world writable and sets the features appendonlydir:varfonts
in mktex.cnf.
The ro option makes the VARTEXFONTS directory (and subtrees pk, tfm,
source) writable for the owner only and sets the feature texmfvar in
mktex.cnf.
For more information about these \`features', consult the teTeX manual
(e.g. by running \`texdoc TETEXDOC')."
case $2 in
vardir)
case $3 in
"")
echo "$help" >&2
rc=1
;;
*)
tcBatchFontVardir=$3
tfc=`kpsewhich texmf.cnf`
if test -n "$tfc"; then
if test -w "$tfc"; then
configReplace "$tfc" '^VARTEXFONTS' "VARTEXFONTS = $tcBatchFontVardir"
else
echo "$progname: setting up vardir failed. Reason: no permission to write file \`$tfc'" >&2
rc=1
fi
else
echo "$progname: setting up vardir failed. Reason: failed to find file texmf.cnf" >&2
rc=1
fi
;;
esac
;;
rw)
MT_VARTEXFONTS=`kpsewhich -var-value VARTEXFONTS`
if test -z "$MT_VARTEXFONTS"; then
echo "$progname: failed to set \`font rw'; reason: could not determine VARTEXFONTS variable." >&2; rc=1
return
fi
test -d "$MT_VARTEXFONTS" || mktexdir "$MT_VARTEXFONTS"
if test ! -d "$MT_VARTEXFONTS"; then
echo "$progname: failed to set \`font rw'; reason: directory \`$MT_VARTEXFONTS' does not exist." >&2; rc=1
return
fi
chmod 1777 "$MT_VARTEXFONTS" || {
echo "$progname: failed to modify permissions in \`$MT_VARTEXFONTS'." >&2; rc=1
return;
}
(
cd "$MT_VARTEXFONTS" || exit
echo "$progname: modifying permissions in \`$MT_VARTEXFONTS' ..." >&2
for d in pk tfm source; do
test -d "$d" && find $d -type d -exec chmod 1777 '{}' \;
done
echo "$progname: all permissions set." >&2
)
setupTmpDir
fmgrConfigReplace mktex.cnf '^: ..MT_FEATURES=' ": \${MT_FEATURES=appendonlydir:varfonts}"
;;
ro)
MT_VARTEXFONTS=`kpsewhich -var-value VARTEXFONTS`
if test -z "$MT_VARTEXFONTS"; then
echo "$progname: failed to set \`font ro'; reason: could not determine VARTEXFONTS variable." >&2; rc=1
return
fi
test -d "$MT_VARTEXFONTS" || mktexdir "$MT_VARTEXFONTS"
if test ! -d "$MT_VARTEXFONTS"; then
echo "$progname: failed to set \`font ro'; reason: directory \`$MT_VARTEXFONTS' does not exist." >&2; rc=1
return
fi
chmod 755 "$MT_VARTEXFONTS" || {
echo "$progname: failed to modify permissions in \`$MT_VARTEXFONTS'." >&2; rc=1
return;
}
(
cd "$MT_VARTEXFONTS" || exit
echo "$progname: modifying permissions in \`$MT_VARTEXFONTS' ..." >&2
for d in pk tfm source; do
test -d "$d" && find "$d" -type d -exec chmod 755 '{}' \;
done
echo "$progname: all permissions set." >&2
)
setupTmpDir
fmgrConfigReplace mktex.cnf '^: ..MT_FEATURES=' ": \${MT_FEATURES=texmfvar}"
;;
"") echo "$help" >&2; rc=1;;
*) echo "$progname: unknown option \`$2' given as argument for \`$progname font'" >&2
echo "$progname: try \`$progname font' for help" >&2
rc=1
;;
esac
;;
formats)
cat >&2 <<EOM
texconfig formats is no longer supported, because manual edits of
fmtutil.cnf will be overwritten by the new TeX Live package manager,
tlmgr, which regenerates that file as needed upon package changes.
Thus, to add or remove formats, the recommended method is to use tlmgr
to add or remove the appropriate package.
If you need to make manual additions, you can edit the file
fmtutil-local.cnf under TEXMFLOCAL. Further information with
tlmgr --help and at http://tug.org/texlive/tlmgr.html.
Exiting.
EOM
exit 1 # but leave the real code for posterity
setupTmpDir
echo "$progname: analyzing old configuration..." >&2
fmtutil --catcfg > $tmpdir/pre
fmtutil --edit
echo "$progname: analyzing new configuration..." >&2
fmtutil --catcfg > $tmpdir/post
if cmp $tmpdir/pre $tmpdir/post >/dev/null 2>&1; then
echo "$progname: no new/updated formats available ..." >&2
else
echo "$progname: updating formats ..." >&2
comm -13 $tmpdir/pre $tmpdir/post > $tmpdir/addOrChange
for i in `awk '{print $1}' $tmpdir/addOrChange`; do
fmtutil --byfmt "$i" || rc=1
done
texlinks --multiplatform || rc=1
fi
;;
help|--help|-h)
echo "$help"
;;
# "hyphen FORMAT"
hyphen)
cat >&2 <<EOM
texconfig hyphen is no longer supported, because manual edits of
language.dat (or language.def) will be overwritten by the new TeX Live
package manager, tlmgr, which regenerates those configuration files as
needed upon package changes. Thus, to add or remove hyphenation
patterns, the recommended method is to use tlmgr to add or remove the
appropriate package.
If you need to make manual additions, you can edit the files
language-local.dat and language-local.def under TEXMFLOCAL. Further
information with tlmgr --help and at http://tug.org/texlive/tlmgr.html.
Exiting.
EOM
exit 1 # but leave the real code for posterity
tcBatchHyphenFormat=$2
formatsForHyphen=`getFormatsForHyphen`
formatsForHyphenFmt=`echo "$formatsForHyphen" | myFmt | sed 's@^@ @'`
help="Usage: $progname hyphen FORMAT
Valid FORMATs are:
$formatsForHyphenFmt"
case $tcBatchHyphenFormat in
"")
echo "$help" >&2; rc=1
;;
*)
if checkElemInList "$tcBatchHyphenFormat" $formatsForHyphen; then
tcBatchHyphenFile=`fmtutil --showhyphen "$tcBatchHyphenFormat"`
case $tcBatchHyphenFile in
"")
echo "$progname: could not find hyphen setup file for format \`$tcBatchHyphenFormat'" >&2
rc=1
return
;;
esac
getRelDir "$tcBatchHyphenFile"
case $relPart in
"")
# edit tcBatchHyphenFile directly
tcBatchHFID=
setupTmpDir
tcBatchHFEdit=$tcBatchHyphenFile
tcBatchHFOrig=$tmpdir/hforig
cp "$tcBatchHyphenFile" "$tcBatchHFOrig"
;;
*)
# use tcfmgr
tcBatchHyphenFileBasename=`echo "$tcBatchHyphenFile" | sed 's@.*/@@'`
setupTmpDir
co=`tcfmgr --tmp $tmpdir --cmd co --file "$tcBatchHyphenFileBasename" --reldir "$relPart" --infile "$tcBatchHyphenFile"`
if test $? != 0; then
echo "$progname: failed to check out file \`$tcBatchHyphenFile'" >&2
rc=1
return 1
else
set x $co; shift
tcBatchHFID=$1; tcBatchHFEdit=$3; tcBatchHFOrig=$4
fi
;;
esac
${VISUAL-${EDITOR-vi}} "$tcBatchHFEdit"
if cmp "$tcBatchHFEdit" "$tcBatchHFOrig" >/dev/null 2>&1; then
echo "$progname: configuration unchanged." >&2
else
case $tcBatchHFID in
"")
tcBatchHFOut=$tcBatchHFEdit
echo "$progname: updated configuration saved as file \`$tcBatchHFOut'" >&2
lastUpdatedFile=$ci
;;
*)
ci=`tcfmgr --tmp $tmpdir --cmd ci --id "$tcBatchHFID"`
if test $? != 0; then
echo "$progname: failed to check in file \`$tcBatchHyphenFileBasename'" >&2
rc=1
return
else
tcBatchHFOut=$ci
echo "$progname: updated configuration saved as file \`$tcBatchHFOut'" >&2
lastUpdatedFile=$ci
fi
;;
esac
fmtutil --byhyphen "$tcBatchHFOut"
fi
else
echo "$progname: invalid format \`$tcBatchHyphenFormat' specified as argument for \`$progname hyphen'" >&2
echo "$progname: for getting help, try \`$progname hyphen'" >&2
rc=1
fi
;;
esac
;;
hyphen-list)
getFormatsForHyphen
;;
init)
if test -n "$texconfig_sys"; then # set by texconfig-sys
fmtutil=fmtutil-sys
updmap=updmap-sys
else
fmtutil=fmtutil
updmap=updmap
fi
case $2 in
"")
if $fmtutil --all \
&& texlinks --multiplatform \
&& $updmap; then
:
else
rc=1
fi
;;
*)
shift 1
for i in "$@"; do
$fmtutil --byfmt "$i" || rc=1
done
;;
esac
;;
mode-list)
setupModesMfFile
listMfModes
;;
mode)
case $2 in
"")
echo "Usage: $progname mode MODE
Valid MODE settings:"
setupModesMfFile
listMfModes | sed 's@ .*@@; s@^@ @' | myFmt
rc=1
;;
*)
tcBatchMode=$2
setupModesMfFile
if checkElemInList $tcBatchMode `listMfModes | sed 's@ .*@@'`; then
# modify mktex.cnf
setupTmpDir
fmgrConfigReplace mktex.cnf '^: ..MODE=' ": \${MODE=$tcBatchMode}"
set x `getRes "$tcBatchMode"`; shift
tcBatchRes=$1
fmgrConfigReplace mktex.cnf '^: ..BDPI=' ": \${BDPI=$tcBatchRes}"
if checkForBinary dvips >/dev/null && tcfmgr --cmd find --file config.ps >/dev/null 2>&1; then
tcBatch dvips mode "$tcBatchMode"
fi
if checkForBinary pdftex >/dev/null && tcfmgr --cmd find --file pdftexconfig.tex >/dev/null 2>&1; then
tcBatch pdftex mode "$tcBatchMode"
fi
else
echo "$progname: unknown mode \`$tcBatchMode' specified as argument for \`$progname mode'" >&2; rc=1
fi
;;
esac
;;
paper)
help="Usage: $progname paper PAPER
Valid PAPER settings:
letter a4"
p=$2; pXdvi=$2; pDvips=$2
case $2 in
letter)
pXdvi=us;;
a4)
pXdvi=a4;;
"") echo "$help" >&2; rc=1; return;;
*)
echo "$progname: unknown PAPER \`$2' given as argument for \`$progname paper'" >&2
echo "$progname: try \`$progname paper' for help" >&2
rc=1
return;;
esac
if checkForBinary dvips >/dev/null && tcfmgr --cmd find --file config.ps >/dev/null 2>&1; then
tcBatch dvips paper $pDvips
fi
if checkForBinary dvipdfm >/dev/null && tcfmgr --cmd find --file config >/dev/null 2>&1; then
tcBatch dvipdfm paper $p
fi
if checkForBinary dvipdfmx >/dev/null && tcfmgr --cmd find --file dvipdfmx.cfg >/dev/null 2>&1; then
tcBatch dvipdfmx paper $p
fi
if checkForBinary xdvi >/dev/null && tcfmgr --cmd find --file XDvi >/dev/null 2>&1; then
tcBatch xdvi paper $pXdvi
fi
if checkForBinary pdftex >/dev/null && tcfmgr --cmd find --file pdftexconfig.tex >/dev/null 2>&1; then
tcBatch pdftex paper $p
fi
;;
pdftex)
help="Usage: $progname pdftex paper PAPER
Valid PAPER settings:
a4 letter"
case $2 in
mode)
case $3 in
"")
echo "Usage: $progname pdftex mode MODE"
rc=1
;;
*)
tcBatchPdftexMode=$3
setupTmpDir
setupModesMfFile
if checkElemInList "$tcBatchPdftexMode" `listMfModes | sed 's@ .*@@'`; then
set x `getRes "$tcBatchPdftexMode"`; shift
fmgrConfigReplace pdftexconfig.tex 'pdfpkresolution' "\\pdfpkresolution=$1"
if $fmgrConfigReplaceChanged; then
fmtutil --refresh
fi
else
echo "$progname: unknown MODE \`$tcBatchPdftexMode' given as argument for \`$progname pdftex mode'" >&2
rc=1
fi
;;
esac
;;
paper)
case $3 in
letter)
w="8.5 true in"; h="11 true in"
setupTmpDir
fmgrConfigReplace pdftexconfig.tex pdfpagewidth '\pdfpagewidth='"$w"
wChanged=$fmgrConfigReplaceChanged
fmgrConfigReplace pdftexconfig.tex pdfpageheight '\pdfpageheight='"$h"
if $wChanged || $fmgrConfigReplaceChanged; then
fmtutil --refresh
fi
;;
a4)
w="210 true mm"; h="297 true mm"
fmgrConfigReplace pdftexconfig.tex pdfpagewidth '\pdfpagewidth='"$w"
wChanged=$fmgrConfigReplaceChanged
fmgrConfigReplace pdftexconfig.tex pdfpageheight '\pdfpageheight='"$h"
if $wChanged || $fmgrConfigReplaceChanged; then
fmtutil --refresh
fi
;;
"") echo "$help" >&2; rc=1;;
*)
echo "$progname: unknown PAPER \`$3' given as argument for \`$progname pdftex paper'" >&2
echo "$progname: try \`$progname pdftex paper' for help" >&2
rc=1 ;;
esac ;;
"")
echo "$help" >&2; rc=1;;
*)
echo "$progname: unknown option \`$2' given as argument for \`$progname pdftex'" >&2
echo "$progname: try \`$progname pdftex' for help" >&2
rc=1
;;
esac
;;
rehash)
mktexlsr
;;
#
version|--version)
echo "$progname version $version"
setupTexmfmain
setupTexmfdist
showDistVersionInfo
(exit 0); exit 0;;
# handle "xdvi paper PAPER"
xdvi)
tcBatchXdviPapers='us "8.5x11"
usr "11x8.5"
legal "8.5x14"
foolscap "13.5x17.0"
a1 "59.4x84.0cm"
a2 "42.0x59.4cm"
a3 "29.7x42.0cm"
a4 "21.0x29.7cm"
a5 "14.85x21.0cm"
a6 "10.5x14.85cm"
a7 "7.42x10.5cm"
a1r "84.0x59.4cm"
a2r "59.4x42.0cm"
a3r "42.0x29.7cm"
a4r "29.7x21.0cm"
a5r "21.0x14.85cm"
a6r "14.85x10.5cm"
a7r "10.5x7.42cm"
b1 "70.6x100.0cm"
b2 "50.0x70.6cm"
b3 "35.3x50.0cm"
b4 "25.0x35.3cm"
b5 "17.6x25.0cm"
b6 "13.5x17.6cm"
b7 "8.8x13.5cm"
b1r "100.0x70.6cm"
b2r "70.6x50.0cm"
b3r "50.0x35.3cm"
b4r "35.3x25.0cm"
b5r "25.0x17.6cm"
b6r "17.6x13.5cm"
b7r "13.5x8.8cm"
c1 "64.8x91.6cm"
c2 "45.8x64.8cm"
c3 "32.4x45.8cm"
c4 "22.9x32.4cm"
c5 "16.2x22.9cm"
c6 "11.46x16.2cm"
c7 "8.1x11.46cm"
c1r "91.6x64.8cm"
c2r "64.8x45.8cm"
c3r "45.8x32.4cm"
c4r "32.4x22.9cm"
c5r "22.9x16.2cm"
c6r "16.2x11.46cm"
c7r "11.46x8.1cm"'
help="Usage: $progname xdvi paper PAPER
Valid PAPER settings:
a1 a1r a2 a2r a3 a3r a4 a4r a5 a5r a6 a6r a7 a7r
b1 b1r b2 b2r b3 b3r b4 b4r b5 b5r b6 b6r b7 b7r
c1 c1r c2 c2r c3 c3r c4 c4r c5 c5r c6 c6r c7 c7r
foolscap legal us usr"
case $2 in
paper-list)
echo "$tcBatchXdviPapers"
;;
paper)
case $3 in
a1|a1r|a2|a2r|a3|a3r|a4|a4r|a5|a5r|a6|a6r|a7|a7r|b1|b1r|b2|b2r|b3|b3r|b4|b4r|b5|b5r|b6|b6r|b7|b7r|c1|c1r|c2|c2r|c3|c3r|c4|c4r|c5|c5r|c6|c6r|c7|c7r|foolscap|legal|us|usr)
fmgrConfigReplace XDvi paper: "*paper: $3"
;;
"") echo "$help" >&2; rc=1;;
*)
echo "$progname: unknown PAPER \`$3' given as argument for \`$progname xdvi paper'" >&2
echo "$progname: try \`$progname xdvi paper' for help" >&2
rc=1 ;;
esac ;;
"")
echo "$help" >&2; rc=1;;
*)
echo "$progname: unknown option \`$2' given as argument for \`$progname xdvi'" >&2
echo "$progname: try \`$progname xdvi' for help" >&2
rc=1
;;
esac
;;
*)
echo "$progname: unknown option \`$1' given as argument for \`$progname'" >&2
echo "$progname: try \`$progname help' for help" >&2
rc=1
esac
}
###############################################################################
# tcInteractive(void)
# handle interactive mode
###############################################################################
tcInteractive()
{
texconfig-dialog
}
###############################################################################
# main()
###############################################################################
rc=0
case $# in
0) tcInteractive;;
*) tcBatch "$@";;
esac
cleanup $rc
|