Overview
Comment: | Reads the contents of _cr.txt and adds CRs for which a cr.pm exists to the argument list of apply_cr.pl, which modifies the standard stream. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | origin/master | trunk |
Files: | files | file ages | folders |
SHA3-256: |
9cc176e69aa59000a891b8cf95aa2e23 |
User & Date: | geraint@users.sourceforge.net on 2004-08-31 01:28:11 |
Other Links: | branch diff | manifest | tags |
Context
2004-08-31
| ||
01:29:48 | CRs are applied to sorted equation files during production. check-in: 785bd9f79e user: geraint@users.sourceforge.net tags: origin/master, trunk | |
01:28:11 |
Reads the contents of _cr.txt and adds CRs for which a cr.pm exists to the argument list of apply_cr.pl, which modifies the standard stream. check-in: 9cc176e69a user: geraint@users.sourceforge.net tags: origin/master, trunk | |
2004-08-30
| ||
23:08:41 | Perl module implementing lin CR, for use with apply_cr.pl check-in: 647922f738 user: geraint@users.sourceforge.net tags: origin/master, trunk | |
Changes
Added mttroot/mtt/bin/trans/apply_crs version [c893c6e23b].
> > > > > > > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | #! /bin/sh sys=$1 # check for the existence of CRs that we need crs='' for cr in `cat ${sys}_cr.txt`; do if [ -f ${cr}.pm ]; then crs="$crs $cr" fi done # should be reading the output from ese_r2make # on standard input ${MTT_LIB}/cr/perl/apply_cr.pl ${crs} echo ";end;" |