Overview
Comment: | Put in heading. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | origin/master | trunk |
Files: | files | file ages | folders |
SHA3-256: |
c335ed0df10c68a3dcdb06ad5c006acb |
User & Date: | gawthrop@users.sourceforge.net on 1999-03-11 04:12:26 |
Other Links: | branch diff | manifest | tags |
Context
1999-03-11
| ||
23:54:11 | Include possibility of vector SS when finding port_bond_index check-in: 52908cf045 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
04:12:26 | Put in heading. check-in: c335ed0df1 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
04:02:45 | Initial revision check-in: 9d042fd3b4 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
Changes
Modified mttroot/mtt/bin/sh2csh from [dd4395b56c] to [bc04f77afa].
1 2 3 4 5 6 7 8 9 10 11 | #!/bin/sh ############################################################### ## Version control history ############################################################### ## $Id$ ## $Log$ ############################################################### #Converts mttrc to csh form. | > > > > > > > > > > | > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 | #!/bin/sh ############################################################### ## Version control history ############################################################### ## $Id$ ## $Log$ ## Revision 1.1 1999/03/11 04:02:45 peterg ## Initial revision ## ############################################################### echo Converting $1 to $1.csh #Converts mttrc to csh form. date=`date` cat<<EOF >$1.csh #!/bin/csh ## Automatically generated from bashrc on $date - DO NOT EDIT EOF cat $1 | sed 's/export/setenv/' | sed 's/=/ /' >>$1.csh echo done. |