Overview
| Comment: | Minor changes |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | origin/master | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
7ecadabf8964ccd879002d04cac1f4d3 |
| User & Date: | gawthrop@users.sourceforge.net on 1998-07-17 19:47:35.000 |
| Other Links: | branch diff | manifest | tags |
Context
|
1998-07-17
| ||
| 19:48:46 | *** empty log message *** check-in: e2f81d4c7c user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
| 19:47:35 | Minor changes check-in: 7ecadabf89 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
| 19:46:56 | No change check-in: 8732ff0014 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
Changes
Modified mttroot/mtt/bin/mtt_find
from [739585504a]
to [912c88e929].
| ︙ | ︙ | |||
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 1998/07/16 20:40:24 peterg ## Cleaned up algorithms ## ## Revision 1.3 1998/07/16 09:15:34 peterg ## Now prints: ## dir ## name_lbl.txt | > > > > > > > > | 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 | # Copyright (c) P.J.Gawthrop 1996 ############################################################### ## Version control history ############################################################### ## $Id$ ## $Log$ ## Revision 1.5 1998/07/17 07:50:33 peterg ## Now handles library name ## Returns a status ## 0 if exactly one result ## 1 if no results ## 2 if two or more results ## 3 if utterly confused ## ## Revision 1.4 1998/07/16 20:40:24 peterg ## Cleaned up algorithms ## ## Revision 1.3 1998/07/16 09:15:34 peterg ## Now prints: ## dir ## name_lbl.txt |
| ︙ | ︙ | |||
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 |
if [ -n "$2" ]; then
name=`basename $2`
longname=$2
Name="-name $name"
fi
# Find all dirs in path with same name as component
# AND the path contains the full (name+library) name
paths=`echo $path | tr ":" " "`
foundpath=`\
for thepath in $paths; do
find $thepath -type d $Name -print
done |\
sort -u |\
grep "$longname"`
# If non-null result, check that the name_lbl.txt file exists in dir name
# and print dirname and file name and last access time
if [ -n "$foundpath" ]; then
for thepath in $foundpath ; do
dirname=`echo $thepath | awk -F/ '{print $NF}'`
fullname="$dirname"_lbl.txt
| > > > > > > > | | 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 |
if [ -n "$2" ]; then
name=`basename $2`
longname=$2
Name="-name $name"
fi
# If this is non-empty just print the path
path_only=$3
# Find all dirs in path with same name as component
# AND the path contains the full (name+library) name
paths=`echo $path | tr ":" " "`
foundpath=`\
for thepath in $paths; do
find $thepath -type d $Name -print
done |\
sort -u |\
grep "$longname"`
# If non-null result, check that the name_lbl.txt file exists in dir name
# and print dirname and file name and last access time
if [ -n "$foundpath" ]; then
if [ -n "$path_only" ]; then
format='%h\n';
else
format='%h\t%f\t%Ac\n';
fi
for thepath in $foundpath ; do
dirname=`echo $thepath | awk -F/ '{print $NF}'`
fullname="$dirname"_lbl.txt
find $thepath -maxdepth 1 -name $fullname -printf $format;
done |\
tee mtt_junk
fi
# Check exit status and return
hits=`wc mtt_junk | awk '{print $1}'`
rm -f mtt_junk
|
| ︙ | ︙ |