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
|
# Copyright (c) P.J.Gawthrop, 1996.
###############################################################
## Version control history
###############################################################
## $Id$
## $Log$
###############################################################
BEGIN {
split(ARGV[1],a,"_");
system_name = a[1];
}
{
if (NF==2) {
if( match("tex txt r m ps",$2)>0) {
printf("%s_%s.%s ", system_name, $1, $2)
}
}
}
END {
}
|
>
>
>
|
|
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
|
# Copyright (c) P.J.Gawthrop, 1996.
###############################################################
## Version control history
###############################################################
## $Id$
## $Log$
# Revision 1.1 1996/08/18 19:59:00 peter
# Initial revision
#
###############################################################
BEGIN {
split(ARGV[1],a,"_");
system_name = a[1];
}
{
if (NF==2) {
if( match("tex txt r m ps",$2)>0) {
printf("mtt -q %s %s %s\n ", system_name, $1, $2)
}
}
}
END {
}
|