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
%!PS
% Written by Helge Blischke, see
% http://groups.google.com/groups?ic=1&selm=3964A684.49D%40srz-berlin.de
%
% The following 2 procs encapsulate the jobs to be processed
% much as is done with EPS images:
/_begin_job_
{
/tweak_save save def
/tweak_dc countdictstack def
/tweak_oc count 1 sub def
userdict begin
}bind def
/_end_job_
{
count tweak_oc sub{pop}repeat
countdictstack tweak_dc sub{end}repeat
tweak_save restore
}bind def
% Now, add your jobs like this:
_begin_job_
%(c:\\tilap\\file1.ps)run
(discret1.ps)run
_end_job_
_begin_job_
(sockets-part1.ps)run
_end_job_
_begin_job_
(sockets-part2.ps)run
_end_job_
_begin_job_
(connect1.ps)run
_end_job_
_begin_job_
(connect2.ps)run
_end_job_
_begin_job_
(pin_array.ps)run
_end_job_
_begin_job_
(conn_DBxx.ps)run
_end_job_
_begin_job_
(conn_HExx.ps)run
_end_job_
_begin_job_
(libcms.ps)run
_end_job_
_begin_job_
(dil_rd.ps)run
_end_job_
_begin_job_
(dil_ell.ps)run
_end_job_
_begin_job_
(miscellanous.ps)run
_end_job_
% and so on.