Overview
| Comment: | Includes summary line as well as description lines |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | origin/master | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
60a65500a66e87172b0ea6c311cd818c |
| User & Date: | gawthrop@users.sourceforge.net on 1997-09-04 09:15:19.000 |
| Other Links: | branch diff | manifest | tags |
Context
|
1997-09-04
| ||
| 09:16:29 | Removed sort -u check-in: 9660c369df user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
| 09:15:19 | Includes summary line as well as description lines check-in: 60a65500a6 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
| 08:34:53 | Initial revision check-in: e069dc6b0c user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
Changes
Modified mttroot/mtt/bin/mtt_find
from [41f2f3af7d]
to [b567e03c4e].
| ︙ | |||
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 | 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 | + + + + - + + |
# Copyright (c) P.J.Gawthrop 1996
###############################################################
## Version control history
###############################################################
## $Id$
## $Log$
## Revision 1.1 1996/11/10 10:48:45 peterg
## Initial revision
##
###############################################################
path=$1
name=$2
operation=$3
all=$4
q=\
# awk splits the path into components and writes a find for each
# If all argument null, then succesful find terminates.
awk 'END{ \
n=split(path,a,":");
if (all == "") {
printf("if ");
} for (i=1;i<=n;i++) {
printf("find %s -name \"%s\" -exec %s {} \\; \n", a[i], name, operation);
if (all == "") {
printf("then\n");
printf("exit\n");
printf("fi\n");
}
}
|