10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# Copyright (c) P.J.Gawthrop 1996
###############################################################
## Version control history
###############################################################
## $Id$
## $Log$
# Revision 1.4 1997/09/04 09:16:29 peterg
# Removed sort -u
#
## Revision 1.3 1996/11/09 21:10:20 peterg
## Tidied up searches by putting everyrhing into lib.
##
# Revision 1.2 1996/11/02 10:22:54 peterg
|
>
>
>
|
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
# Copyright (c) P.J.Gawthrop 1996
###############################################################
## Version control history
###############################################################
## $Id$
## $Log$
# Revision 1.5 1997/09/04 09:21:01 peterg
# Added context-dependent sort.
#
# Revision 1.4 1997/09/04 09:16:29 peterg
# Removed sort -u
#
## Revision 1.3 1996/11/09 21:10:20 peterg
## Tidied up searches by putting everyrhing into lib.
##
# Revision 1.2 1996/11/02 10:22:54 peterg
|
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
echo ' mtt help components <match_string>'
echo ' mtt help examples <match_string>'
echo ' mtt help CRs <match_string>'
echo ' mtt help <component_or_example_or_CR_name>'
exit
fi
ext='*'
summary='[%#]SUMMARY'
description='[%#]DESCRIPTION'
case $topic in
components)
key=$summary
find_path=$MTT_COMPONENTS
|
|
|
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
|
echo ' mtt help components <match_string>'
echo ' mtt help examples <match_string>'
echo ' mtt help CRs <match_string>'
echo ' mtt help <component_or_example_or_CR_name>'
exit
fi
ext='_*.*[mt]'
summary='[%#]SUMMARY'
description='[%#]DESCRIPTION'
case $topic in
components)
key=$summary
find_path=$MTT_COMPONENTS
|