Overview
Comment:Removed sorting
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | origin/master | trunk
Files: files | file ages | folders
SHA3-256: 35cec3279b293d24d1a2517c42d53f3599515351fc3f041cbf1523dfb92bfb14
User & Date: gawthrop@users.sourceforge.net on 1998-11-10 17:12:15
Other Links: branch diff | manifest | tags
Context
1998-11-16
13:01:19
Fixed problem with repetitions>1 due to new data structures -- now
computes initial next_bond correctly
check-in: a5a7728c24 user: gawthrop@users.sourceforge.net tags: origin/master, trunk
1998-11-10
17:12:15
Removed sorting check-in: 35cec3279b user: gawthrop@users.sourceforge.net tags: origin/master, trunk
14:15:36
Now does matrix style for m<3 check-in: 500c77c138 user: gawthrop@users.sourceforge.net tags: origin/master, trunk
Changes

Modified mttroot/mtt/bin/trans/dir2paths from [a1db511505] to [98a433273b].

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, 1998.

###############################################################
## Version control history
###############################################################
## $Id$
## $Log$



###############################################################


dotdot=$2 # Set to ../ if we are in MTT_work


# Create paths for all valid examples - ie dir name is system name
find $dotdot$1 -name '*_abg.fig' -print | sort |\
  awk '{
   N=split($1,name,"/"); 
   printf("%s", name[1]);
   for (i=2;i<N;i++) printf("/%s", name[i]); 
   printf(" %s %s\n", name[N-1], name[N]);
  }' |\
  awk '{







>
>
>







|







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, 1998.

###############################################################
## Version control history
###############################################################
## $Id$
## $Log$
## Revision 1.1  1998/03/11 10:32:35  peterg
## Initial revision
##
###############################################################


dotdot=$2 # Set to ../ if we are in MTT_work


# Create paths for all valid examples - ie dir name is system name
find $dotdot$1 -name '*_abg.fig' -print |\
  awk '{
   N=split($1,name,"/"); 
   printf("%s", name[1]);
   for (i=2;i<N;i++) printf("/%s", name[i]); 
   printf(" %s %s\n", name[N-1], name[N]);
  }' |\
  awk '{


MTT: Model Transformation Tools
GitHub | SourceHut | Sourceforge | Fossil RSS ]