Overview
| Comment: | *** empty log message *** |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | origin/master | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
a1acac7802365775aa0e6bb9a227e173 |
| User & Date: | gawthrop@users.sourceforge.net on 2000-12-27 13:11:43.000 |
| Other Links: | branch diff | manifest | tags |
Context
|
2000-12-27
| ||
| 14:14:47 | initial checkin check-in: e4a18090bc user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
| 13:11:43 | *** empty log message *** check-in: a1acac7802 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
| 12:55:21 | Initial revision check-in: 8c40c5e1e6 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
Changes
Modified mttroot/mtt/bin/mtt_backup
from [adf69bcca0]
to [c4fb75f9d6].
| ︙ | |||
20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 | 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 | + + |
format=date;
esac
done
#Name of archive
if [ -z "$1" ]; then
mtt="mtt"
dirs='mtt mtt-lib mtt-cc mtt-doc'
else
mtt="mtt-$1"
dirs=$mtt
fi
## Create appropriate filename
case $format in
date)
filename=`date | awk '{printf("%s_%s%s_%s.tgz\n", mtt, $2,$3,$6)}' mtt=$mtt`;
shift
|
| ︙ | |||
43 44 45 46 47 48 49 | 45 46 47 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 | - - - - - - - + + + + - + - - + + | esac echo Backup file $filename |
Modified mttroot/mtt/bin/mtt_backups
from [91abddd29d]
to [6f813c5536].
1 2 3 4 5 6 7 8 9 10 11 12 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | + + + + | #!/bin/sh # Does a backup with date of all mtt components # $Log$ # Revision 1.2 2000/10/03 12:17:58 peterg # Prints usage line # if [ -z "$1" ]; then echo "Usage: mtt_backups [-v|-d]" exit fi mtt_backup $1 mtt_backup $1 cc mtt_backup $1 lib mtt_backup $1 doc |
Modified mttroot/mtt/bin/mtt_check_var
from [05224a0c69]
to [afd404bde7].
| ︙ | |||
11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 | 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 | + + + + - - + + | ############################################################### ## Version control history ############################################################### ## $Id$ ## $Log$ # Revision 1.2 1997/12/04 10:41:15 peterg # Added third argument to print env. variables. # ## Revision 1.1 1997/07/27 13:11:37 peterg ## Initial revision ## ############################################################### var=$1 name=$2 print=$3 software=$4 if [ -z "$1" ]; then |
Modified mttroot/mtt/bin/mtt_check_vars
from [d6907a8ddb]
to [65d9a8cff0].
| ︙ | |||
11 12 13 14 15 16 17 18 19 20 21 22 23 24 | 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 | + + + | ############################################################### ## Version control history ############################################################### ## $Id$ ## $Log$ ## Revision 1.7 2000/08/04 15:48:30 peterg ## Added PDF ## ## Revision 1.6 2000/05/22 12:37:24 peterg ## *** empty log message *** ## ## Revision 1.5 2000/05/22 12:34:07 peterg ## Added MTT_REP ## ## Revision 1.4 1998/07/30 17:30:41 peterg |
| ︙ | |||
54 55 56 57 58 59 60 | 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 | - + - + | #mtt_check_var "$TEXFORMATS" "TEXFORMATS" "$print" "LaTeX" #mtt_check_var "$TEXINPUTS" "TEXINPUTS" "$print" "LaTeX" #mtt_check_var "$TEXFONTS" "TEXFONTS" "$print" "LaTeX" # MTT variables mtt_check_var "$MAKE" "MAKE" "$print" "MTT" mtt_check_var "$MTTPATH" "MTTPATH" "$print" "MTT" |
| ︙ |
Modified mttroot/mtt/bin/mtt_rename
from [47c1863ff1]
to [f90f4679c7].
| ︙ | |||
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 45 46 | + + + + + - + - - - + |
# Copyright (c) P.J.Gawthrop 1998
###############################################################
## Version control history
###############################################################
## $Id$
## $Log$
## Revision 1.4 1998/08/15 13:50:22 peterg
## Doesn't zap preexisting files
##
## Revision 1.3 1998/08/14 15:37:38 peterg
## rename now copies - no delete
##
## Revision 1.2 1998/01/06 13:57:39 peterg
## Now removes old version after copying
##
# Revision 1.1 1998/01/06 13:48:23 peterg
# Initial revision
#
###############################################################
old_name=$1
new_name=$2
extension=$3
left='[^a-zA-z]'
right=$left
if [ -f "$new_name$extension" ]; then
echo "$new_name$extension \t already exists -- no action taken"
exit
fi
if ls $old_name$extension > /dev/null 2>&1
then
echo Renaming $old_name$extension to $new_name$extension
|
Modified mttroot/mtt/bin/mtt_version
from [b7d68d5ced]
to [6c3f7fc85e].
| ︙ | |||
11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 | 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 | + + + - + - + + + + + + | # Copyright (c) P.J.Gawthrop 1998 ############################################################### ## Version control history ############################################################### ## $Id$ ## $Log$ ## Revision 1.3 1999/12/20 02:08:38 peterg ## Added second arg option ## ## Revision 1.2 1998/05/28 09:31:44 peterg ## Cosmetic changes ## ## Revision 1.1 1998/05/28 09:31:13 peterg ## Initial revision ## ############################################################### |
| ︙ |
Modified mttroot/mtt/bin/mttrc
from [45651bbe48]
to [f62b9d84c9].
| ︙ | |||
11 12 13 14 15 16 17 18 19 20 21 22 23 24 | 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 | + + + | ############################################################### ## Version control history ############################################################### ## $Id$ ## $Log$ ## Revision 1.13 2000/10/03 12:12:14 peterg ## New path structure to account for three way split in mtt tree ## ## Revision 1.12 2000/09/18 12:17:07 peterg ## Now includes to control system toolbox in OCTAVE_PATH ## Don't use -path stuff - use :: instead. ## ## Revision 1.11 2000/05/21 17:55:15 peterg ## New rep path ## |
| ︙ | |||
64 65 66 67 68 69 70 71 72 73 | 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 | + - + - + | # The following sets up the c compiler export CC='gcc' # Setup the paths export MTTPATH=$MTT_BASE/mtt export MTT_LIB=$MTT_BASE/mtt-lib export MTT_DOC=$MTT_BASE/mtt-doc export MTT_CC=$MTT_BASE/mtt-cc export MTT_COMPONENTS=$MTT_LIB/comp export MTT_CRS=$MTT_LIB/cr |
| ︙ | |||
109 110 111 112 113 114 115 | 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 | - + + + + + | # Setup html viewer export HTMLVIEW='netscape' # Setup dvi viewer export DVIVIEW='xdvi' # Setup latex2html |